Thread: LUA - Jump Hack

Results 1 to 8 of 8
  1. #1
    ninjadude1's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    303

    LUA - Jump Hack

    Hey fellas,

    More cheats for ya.

    This was made to be used in conjunction with a form called main that has a checkbox named superjump - you can obvious change that - it sets the upwards speed value to 15 (Which could be changed ot set to a variable).

    Code:
    function jump() --boosts jumps for superjump
      if main.superjump.checked==true then
        writeFloat("[[[[[trove.exe+00E629C4]+0]+28]+BC]+4]+94",15)
      end
    end

    If you wanted it to run all the time just remove the if statement

    function jump() --boosts jumps for superjump
    writeFloat("[[[[[trove.exe+00E629C4]+0]+28]+BC]+4]+94",15)
    end

    Obviously you will also want to assign the hotkey here to activate the function - I added a hotkey set this to VK_3 in my geode11 hack and use it to mine on the ceiling

    jumpkey = createHotkey("jump",VK_SPACE) --superjump hotkey

  2. #2
    xppazar's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    131
    Reputation
    10
    Thanks
    252
    My Mood
    Aggressive
    Doesnt work anymore

  3. #3
    ninjadude1's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    303
    It works - check out my hack posted in the main section it uses all of my scripts I have posted in here - I have made few changes to make it more applicable to how other people would use it in their script

  4. #4
    xppazar's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    131
    Reputation
    10
    Thanks
    252
    My Mood
    Aggressive
    I Did but its not approved yet.

  5. #5
    ninjadude1's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    303
    The statement "if main.superjump.checked==true then" requires that you have a form called main - with a checkbox called superjump - superjump has be be checked in order for this to work - You could take the if statement out, and superjump will be active always - There are times when you will not want superjump active (IE coin collection challenge (it is super obvious if you are using this). The following code should work and run any time you jump -

    Code:
    function jump() --boosts jumps for superjump
      writeFloat("[[[[[trove.exe+00E629C4]+0]+28]+BC]+4]+94",15)
    end
    
    jumpkey = createHotkey("jump",VK_SPACE) --superjump hotkey

    I should also mention that the "jumpkey = " can be removed from this code and it will run just the same - the nice thing about runing it with that is that you can do jumpkey.destroy() to remove/reassign the hotkey. You could also use that to turn the superjump on and off
    Last edited by ninjadude1; 07-23-2018 at 02:34 PM.

  6. #6
    ninjadude1's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    303
    New writeFloat line for this code:

    Code:
    writeFloat("[[[[[trove.exe+00E62A28]+0]+28]+BC]+4]+94",15)

  7. #7
    xppazar's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    131
    Reputation
    10
    Thanks
    252
    My Mood
    Aggressive
    Update Please.

  8. #8
    ninjadude1's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    303
    Code:
    writeFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+94",15)

  9. The Following 2 Users Say Thank You to ninjadude1 For This Useful Post:

    AlexDeluxeN1 (07-28-2018),xppazar (07-28-2018)

Similar Threads

  1. [Release] SUPER JUMP HACK!!
    By FatEmoLLaMa in forum Combat Arms Hacks & Cheats
    Replies: 38
    Last Post: 10-07-2008, 08:26 PM
  2. Jump hack & wall hack help?
    By Dasadan2 in forum Combat Arms Hacks & Cheats
    Replies: 11
    Last Post: 08-21-2008, 12:11 PM
  3. T.T Help i need Jump Hack T.T
    By jor in forum Combat Arms Hacks & Cheats
    Replies: 4
    Last Post: 08-18-2008, 12:16 AM
  4. jump hack for WarRock?
    By Trivster in forum Hack Requests
    Replies: 4
    Last Post: 02-24-2007, 10:07 AM
  5. jump hack??(request)
    By Trivster in forum WarRock - International Hacks
    Replies: 16
    Last Post: 02-23-2007, 04:58 PM