Skip to content

Instantly share code, notes, and snippets.

View Jire's full-sized avatar
🇧🇷
of the jungle

Jire Jire

🇧🇷
of the jungle
View GitHub Profile
@Jire
Jire / Jire's PGP Key
Last active August 24, 2018 15:09
Jire's PGP Key
-----BEGIN PGP PUBLIC KEY BLOCK-----
mQINBFtzYPUBEACbMVZmWvstJAU1/tO6eSn5iogSiYxQ9u7RjyRRwqoRXUhmTHFc
xqPNwnJFnFWz1L2jwwQGQ47XGFJqzTOQLlwWeCuOTBgiPkZtLYp7jB7+OPQSIFVU
csDxauR8cyEGZs7eDaDo91Vc+0gb5bNKc2faEUA/jPHQdkF0EE7WyyRQG4AvOqq+
In4cQSLXrUEkIusU79t9yalJ0p+r/SwyycRq9KZEXxvGDJcej3HVuVNVE+LLwOLj
TR1FZ0Mm4F+V+kOjybsOr7FIzL3aWQhMkV6yfB4+ZsqI3fpM4LUEpK71K+fP6x6a
jgFAYzDcvkPUe21iFzdhfXBuwKRPHgd3a1ktztPAT9D6ozv95KLu6ZVoq16lqVIJ
mMVwmEqiGHqajLBUaa/xTG5cSyIwHEm6/cO6b2F1353b9Dpy5yicJGA/6BBHWTZP
MOaKWF9N6+BxVqbgZ/JqRHxLcHEcizFCVPFf+c/GWyyvQFyw33SqITh+3EoF5FwU
/*
* Charlatano: Free and open-source (FOSS) cheat for CS:GO/CS:CO
* Copyright (C) 2017 - Thomas G. P. Nappo, Jonathan Beaudoin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
package ps.eden.client;
import java.io.*;
/**
* @author Jire
*/
public final class NativeLibraryLoader {
private static final String[] NATIVE_LIBRARIES = {
@Jire
Jire / Purple Army Users
Created November 27, 2017 04:14
List of all users in the Purple Army from Discord
! Lukas#8903
! x h i p ★#6070
! λb♡♡d#1244
! ! !#9956
! Epiccodtion™#0993
! Vadikus007#6995
! saucy_rich23#1751
! TazTheBucksFan#3343
! Tigger#7325
! alloha#6878
AncientWyvernNPC.ID {
always { 6812(DropFrequency.ALWAYS) }
main {
// Weapons/Armour
1397(2, 2, DropFrequency.UNCOMMON)
1405(1, DropFrequency.UNCOMMON)
12765(1, DropFrequency.UNCOMMON)
1373(1, DropFrequency.UNCOMMON)
1163(1, DropFrequency.UNCOMMON)
1392(6, 6, DropFrequency.RARE)
val service: ExecutorService = Executors.newFixedThreadPool(512)
fun main(args: Array<String>) {
val jsonFile = File("aws.json")
val o = JsonParser().parse(FileReader(jsonFile)).asJsonObject
val arr = o.get("prefixes").asJsonArray
for (ipE in arr) {
val prefix = ipE["ip_prefix"].asString
val ipPrefix = prefix.split("/")[0].replace(".0.0", "")
@Jire
Jire / Dialogue.kt
Created August 11, 2017 16:20
Eden's dialogue extension
package modules.dialogue
import ps.eden.server.game.content.dialogue.DialoguePlugin
import ps.eden.server.game.node.entity.player.Player
import kotlin.reflect.KVisibility
/**
* @author Jire
*/
abstract class Dialogue(vararg val applicableIDs: Int) : DialoguePlugin() {
@Jire
Jire / Stages.kt
Created August 11, 2017 16:18
Eden's Stages manager
package modules.dialogue
/**
* @author Jire
*/
class Stages(val dialogue: Dialogue) {
companion object {
const val START_STAGE = 1
const val END_STAGE = -1
@Jire
Jire / TzHaarKetKehDialogue.kt
Created August 11, 2017 14:30
Example of Eden's dialogues with "macros"
package plugin.activity.theinferno
import modules.dialogue.NPCDialogue
import modules.dialogue.Stages
import ps.eden.server.plugin.InitializablePlugin
/**
* @author Jire
*/
@InitializablePlugin
@Jire
Jire / TzHaarKetKehDialogue.kt
Created August 11, 2017 14:30
Example of Eden's dialogues with macros"
package plugin.activity.theinferno
import modules.dialogue.NPCDialogue
import modules.dialogue.Stages
import ps.eden.server.plugin.InitializablePlugin
/**
* @author Jire
*/
@InitializablePlugin