This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ps.eden.client; | |
import java.io.*; | |
/** | |
* @author Jire | |
*/ | |
public final class NativeLibraryLoader { | |
private static final String[] NATIVE_LIBRARIES = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! Lukas#8903 | |
! x h i p ★#6070 | |
! λb♡♡d#1244 | |
! ! !#9956 | |
! Epiccodtion™#0993 | |
! Vadikus007#6995 | |
! saucy_rich23#1751 | |
! TazTheBucksFan#3343 | |
! Tigger#7325 | |
! alloha#6878 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", "") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package modules.dialogue | |
/** | |
* @author Jire | |
*/ | |
class Stages(val dialogue: Dialogue) { | |
companion object { | |
const val START_STAGE = 1 | |
const val END_STAGE = -1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package plugin.activity.theinferno | |
import modules.dialogue.NPCDialogue | |
import modules.dialogue.Stages | |
import ps.eden.server.plugin.InitializablePlugin | |
/** | |
* @author Jire | |
*/ | |
@InitializablePlugin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package plugin.activity.theinferno | |
import modules.dialogue.NPCDialogue | |
import modules.dialogue.Stages | |
import ps.eden.server.plugin.InitializablePlugin | |
/** | |
* @author Jire | |
*/ | |
@InitializablePlugin |