Abendigo icon indicating copy to clipboard operation
Abendigo copied to clipboard

Fake Lag Enabling?

Open jo77528 opened this issue 8 years ago • 1 comments

Hey Jire, was looking at the code and was pretty confused for how to enable fake lag. Could you show me how this could be done? Thanks :D

jo77528 avatar Oct 19 '16 01:10 jo77528

All you need to do is navigate to \src\main\kotlin\org\abendigo

Edit Abendigo.tk with notepad or your favourite text editor (Notepad++) and uncomment (remove //) the: FakeLagPlugin.disable()

so it looks like this:

fun main(args: Array<String>) {
    if (DEBUG) println(ManagementFactory.getRuntimeMXBean().name)

    Server.bind().syncUninterruptibly()

    while (!Thread.interrupted()) try {
        csgo
        csgo.loadModules()
        csgoModule
        engineDLL
        clientDLL
        netVars
        break
    } catch (t: Throwable) {
        if (DEBUG) t.printStackTrace()
        Thread.sleep(1500)
    }

    FakeLagPlugin.disable() // only need this if you're using fake lag

    every(2, SECONDS) {
        +Me
        +entities
    }

And that should be it!

squabbi avatar Oct 20 '16 00:10 squabbi