Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Other MMORPG Hacks › Trove Hacks & Cheats › [Release] Updated Farming 11/Geode 11

[Release] Updated Farming 11/Geode 11

Posts 1–15 of 124 · Page 1 of 9
…
NI
ninjadude1
[Release] Updated Farming 11/Geode 11
Updated Farming 11/Geode 11 hack

For those who have not seen this before:
Farming11 was a hack created with the idea that you could use it farming - It can also be used to tp through walls in shadow tower to get to the end portal so you can get to the boss without fighting anything. It contains a TP hack (some people call this a skip) which is bound to the 3 key - a superjump function which is bound to the space bar - A speedhack which can be toggled at 2 speeds and on/off with the 4 and 5 keys - Then there is energy lock which prevents your energy from dropping (client side only) so you can keep rolling back with NN

Geode11 is a hack that incorporates a specific speedhack to Geode (regular speedhack also speeds up gas loss) - I assumed many people already knew of this hack (end gamers anyway) because it has made its rounds amung end gamers.


https://virusscan.jotti.org/en-US/fi...job/b48a9ybl2v
MD5: 99671b6063deb00ab627e8ceb2e89a19
SHA1: 9af71f6f117be6fa1d8f0d639cfdd98330796d4a


https://www.virustotal.com/#/file/af...722d/detection
SHA-256 af71d101e9911108d0e1aec01279c95b238edaeae41681b125 c518136ca4722d












For those who want to modify this (or don't wish to wait on approval) - here is a full lua version

Farming11:
Code:
getAutoAttachList().add("trove.exe") --attach to trove

function createTRadioButton(Parent)
local box = createComponentClass('TRadioButton', Parent)
box.Parent = Parent
return box
end

function skip() --performs the skip
  local xcoord=readFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+60")
  local ycoord=readFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+64")
  local zcoord=readFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+68")
  local xper=(readFloat("trove.exe+CF9938"))*-1
  local yper=readFloat("trove.exe+CF993C")
  local zper=readFloat("trove.exe+CF9940")
  local xadd=xper*main.skipdist.text
  local yadd=yper*main.skipdist.text
  local zadd=zper*main.skipdist.text
  local xdest=xcoord+xadd
  local ydest=ycoord+yadd
  local zdest=zcoord+zadd
  writeFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+60",xdest)
  writeFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+64",ydest)
  writeFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+68",zdest)
end

function speedenableChange() --turns on and off speedhack
  if main.speedenable.checked==true then
     if main.stogs.checked==true then
       speedhack_setSpeed(main.speeds.text)
     else
       speedhack_setSpeed(main.speedf.text)
     end
  else
    speedhack_setSpeed'1'
  end
end

function togglespeed() --speedhack toggle for hotkey
  if main.speedenable.checked==true then
    main.speedenable.checked=false
  else
    main.speedenable.checked=true
  end
end

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

function switchspeed() --toggles between speeds for speedhack
if main.stogs.checked==true then
  main.stogs.checked=false
  main.stogf.checked=true
else
  main.stogs.checked=true
  main.stogf.checked=false
end
speedenableChange()
end

function elockChange() --turns on and off energy lock script
if main.elock.checked==false then
  etimer.Enabled = false
else
    efreezeval = readFloat("[[[[[trove.exe+00E6B980]+0]+28]+50]+170]+70")
    etimers()
end
end

function etimers() --energy lock timer
etimer = createTimer(getMainForm(),true)
timer_setInterval(etimer,100)
timer_onTimer(etimer, setener)
end

function setener(sender) --sets energy value when energy lock timer ticks
writeFloat("[[[[[trove.exe+00E6B980]+0]+28]+50]+170]+70",efreezeval)
end

jumpkey = createHotkey("jump",VK_SPACE) --superjump hotkey
speedokey = createHotkey("togglespeed",VK_5) --speedhack on/off hotkey
speedtkey = createHotkey("switchspeed",VK_4) --speedhack toggle hotkey
skipkey = createHotkey("skip",VK_3) --skip hotkey

function close() --on close for form
if etimer ~= nil then
  etimer.destroy()
end
closeCE()
return caFree
end


function showhelp() --creates help form
help=createForm(true)
help.borderstyle=bsToolWindow
help.height=400
help.width=520
help.caption="Help"
help.title=createLabel(help)
help.title.caption="Accuskip"
help.title.left=236
help.title.top=15
help.structbox=createGroupBox(help)
help.structbox.height=350
help.structbox.caption=""
help.structbox.left=10
help.structbox.top=40
help.structbox.width=500
help.structbox.speedtext=createLabel(help.structbox)
help.structbox.speedtext.caption=[[Speedhack:
This accellerates the game speed.
Attacks seem faster, but damage is dealt on the server side, so no extra damage is done.
You can set 2 speeds to toggle between them.
Lower speeds are harder to detect by other players.
This feature can also be controlled with hotkeys 5 (on/off) and 3 (toggle speed)]]
help.structbox.speedtext.left=15
help.structbox.speedtext.top=215
help.structbox.jumptext=createLabel(help.structbox)
help.structbox.jumptext.caption=[[Superjump:
Superjump gives your jump more umpf.
With superjump you can also hold the space key and it allows you to fly up.]]
help.structbox.jumptext.left=15
help.structbox.jumptext.top=155
help.structbox.energytext=createLabel(help.structbox)
help.structbox.energytext.caption=[[Energy Lock:
This freezes the client side value for the energy.
This feature is only useful for back rolling with the Neon Ninja.]]
help.structbox.energytext.left=15
help.structbox.energytext.top=95
help.structbox.skiptext=createLabel(help.structbox)
help.structbox.skiptext.caption=[[Skipping:
To skip (teleport) press 3.
The skip distance is the distance you will travel when you skip.
Setting a skip distance too low will not teleport you far enough to pass through a wall.
Setting a skip distance too high will get corrected with the server value.]]
help.structbox.skiptext.left=15
help.structbox.skiptext.top=5
help.centerScreen()
help.OnClose = hidehelp
end

function hidehelp() --closes help form
help.destroy()
end



main=createForm(true)
main.borderstyle=bsToolWindow
main.height=205
main.width=142
main.caption="Acuskip"
main.top=115
main.left=342
main.skiptext=createLabel(main)
main.skiptext.caption="Skip Distance"
main.skiptext.left=16
main.skiptext.top=10
main.skipdist=createEdit(main)
main.skipdist.text="3"
main.skipdist.left=103
main.skipdist.top=8
main.skipdist.width=24
main.speedtext=createLabel(main)
main.speedtext.caption="Speedhack"
main.speedtext.left=29
main.speedtext.top=100
main.speedenable=createCheckBox(main)
main.speedenable.caption=nil
main.speedenable.checked=false
main.speedenable.left=108
main.speedenable.top=100
main.speedenable.OnChange=speedenableChange
main.elocktext=createLabel(main)
main.elocktext.caption="Energy Lock"
main.elocktext.left=22
main.elocktext.top=40
main.elock=createCheckBox(main)
main.elock.caption=nil
main.elock.checked=false
main.elock.left=108
main.elock.top=40
main.elock.OnChange=elockChange
main.jumptext=createLabel(main)
main.jumptext.caption="Superjump"
main.jumptext.left=28
main.jumptext.top=70
main.superjump=createCheckBox(main)
main.superjump.caption=nil
main.superjump.checked=false
main.superjump.left=108
main.superjump.top=70
main.stogs=createTRadioButton(main)
main.stogs.caption=nil
main.stogs.checked=false
main.stogs.left=20
main.stogs.top=130
main.stogs.OnChange=speedenableChange
main.stogf=createTRadioButton(main)
main.stogf.caption=nil
main.stogf.checked=false
main.stogf.left=80
main.stogf.top=130
main.stogf.OnChange=speedenableChange
main.speedf=createEdit(main)
main.speedf.text="2"
main.speedf.left=95
main.speedf.top=128
main.speedf.width=28
main.speeds=createEdit(main)
main.speeds.text="1.5"
main.speeds.left=35
main.speeds.top=128
main.speeds.width=28
main.helpbutton=createButton(main)
main.helpbutton.caption="Help"
main.helpbutton.top=170
main.helpbutton.left=53
main.helpbutton.height=24
main.helpbutton.width=40
main.helpbutton.OnClick=showhelp
main.OnClose = close


Geode11:
Code:
getAutoAttachList().add("trove.exe") --attach to trove

function sprint() --OP speedhack
  if main.speedenable.checked == true then
    local xper=(readFloat("trove.exe+CF9938"))*-1
    local yper=readFloat("trove.exe+CF993C")
    local zper=readFloat("trove.exe+CF9940")
    local xaccel=xper * main.speedf.text
    local yaccel=yper * main.speedf.text
    local zaccel=zper * main.speedf.text
    writeFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+90",xaccel)
    writeFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+94",yaccel)
    writeFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+98",zaccel)
  end
end

function togglespeed() --speedhack toggle for hotkey
  if main.speedenable.checked==true then
    main.speedenable.checked=false
  else
    main.speedenable.checked=true
  end
end

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

function float() --superjump without the jump
    writeFloat("[[[[[trove.exe+00E6B980]+0]+28]+BC]+4]+94",15)
end

jumpkey = createHotkey("jump",VK_SPACE) --superjump hotkey
speedokey = createHotkey("togglespeed",VK_5) --speedhack on/off hotkey
speedkey = createHotkey("sprint",VK_W) --sprint hotkey
floathack = createHotkey("float",VK_3) -- lets u float for mining

function close() --on close for form
closeCE()
return caFree
end



function showhelp() --creates help form
help=createForm(true)
help.borderstyle=bsToolWindow
help.height=250
help.width=445
help.caption="Help"
help.title=createLabel(help)
help.title.caption="Geode Toolkit"
help.title.left=185
help.title.top=15
help.structbox=createGroupBox(help)
help.structbox.height=200
help.structbox.caption=""
help.structbox.left=10
help.structbox.top=40
help.structbox.width=425
help.structbox.speedtext=createLabel(help.structbox)
help.structbox.speedtext.caption=[[Speedhack:
This increases your movement speed significantly.
Use 5 to toggle it on and off.]]
help.structbox.speedtext.left=15
help.structbox.speedtext.top=110
help.structbox.jumptext=createLabel(help.structbox)
help.structbox.jumptext.caption=[[Superjump:
Superjump gives your jump more umpf.
With superjump you can also hold the space key and it allows you to fly up.]]
help.structbox.jumptext.left=15
help.structbox.jumptext.top=5
help.structbox.floattext=createLabel(help.structbox)
help.structbox.floattext.caption=[[Float hack:
Press and hold 3 to activate float hack.
This is useful for mining on the ceiling.]]
help.structbox.floattext.left=15
help.structbox.floattext.top=60
help.centerScreen()
help.OnClose = hidehelp
end

function hidehelp() --closes help form
help.destroy()
end


main=createForm(true)
main.borderstyle=bsToolWindow
main.height=135
main.width=142
main.left=342
main.top=115
main.caption="Help"
main.OnClose = close
main.speedenable=createCheckBox(main)
main.speedenable.caption=nil
main.speedenable.checked=false
main.speedenable.left=108
main.speedenable.top=40
main.jumptext=createLabel(main)
main.jumptext.caption="Superjump"
main.jumptext.left=28
main.jumptext.top=10
main.superjump=createCheckBox(main)
main.superjump.caption=nil
main.superjump.checked=false
main.superjump.left=108
main.superjump.top=10
main.speedf=createEdit(main)
main.speedf.text="15"
main.speedf.left=95
main.speedf.top=68
main.speedf.width=28
main.helpbutton=createButton(main)
main.helpbutton.caption="Help"
main.helpbutton.top=100
main.helpbutton.left=53
main.helpbutton.height=24
main.helpbutton.width=40
main.helpbutton.OnClick=showhelp
main.speedtexta=createLabel(main)
main.speedtexta.caption="Speedhack"
main.speedtexta.left=29
main.speedtexta.top=40
main.speedtextb=createLabel(main)
main.speedtextb.caption="Speed"
main.speedtextb.left=54
main.speedtextb.top=70
cheats_mpgh.net.zip
#1 · 7y ago
NI
ninjadude1
Has not been approved yet - that is why I posted the code too - Open cheat engine and press Ctrl+Alt+L then paste this in there - save it and exicute.
#2 · 7y ago
SC
Screther
Вопрос
Hi, can you tell me what 2 values of the camera position will need to be replaced after updating the game, for example with this script I realized that kind of like these:
"local xper=(readFloat ("trove.exe+CF9938"))*-1
local yper=readFloat ("trove.exe+CF993C")
local peer=readFloat ("trove.exe+CF9940 local add=par * main.skip list.text"
But the camera only 2 values, where the third?
#3 · 7y ago
JA
jansenloaurier
looks great ill check it
#4 · 7y ago
NI
ninjadude1
So there is X (xper) - Y (yper) - Z (zper) just like location and speed values.
They are all back to back float values
#5 · 7y ago
AL
AlexDeluxeN1
Can you please tell how to compile/make trainer with your lua? (for yourself) I heard that Glyph detects Cheat Engine
#6 · 7y ago
NI
ninjadude1
Glyph does not detect cheat engine. Just do the following:
-Open cheat engine
-Press CTRL+ALT+L
-Paste the script into the box
-Save (for a trainer file save as CETRAINER or EXE)

If you distribute this I don't care if you give me credit or not, but please give MPGH credit as where you got it as this is somebodies business.
#7 · 7y ago
NI
ninjadude1
Ok Trion has updated again - and I gotta stay on top of this or my cheats will be out of date when approved...


See first post for screenshots


https://virusscan.jotti.org/en-US/fi...job/np6jrlwfh9
MD5: 71a0efb22795d435a6187ef661549090
SHA1: 6e66648ccbf005aace03751e999e6e07dcf4b5c2

https://www.virustotal.com/#/file/5b...8e62/detection
SHA-256 5be6f38105131ae1e5e9463846f4714808dddbd9f0b7e7f4d7 05f34a061e8e62







And the code


Farming11:
Code:
getAutoAttachList().add("trove.exe") --attach to trove

function createTRadioButton(Parent)
local box = createComponentClass('TRadioButton', Parent)
box.Parent = Parent
return box
end

function skip() --performs the skip
  local xcoord=readFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+60")
  local ycoord=readFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+64")
  local zcoord=readFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+68")
  local xper=(readFloat("trove.exe+CFD400"))*-1
  local yper=readFloat("trove.exe+CFD404")
  local zper=readFloat("trove.exe+CFD408")
  local xadd=xper*main.skipdist.text
  local yadd=yper*main.skipdist.text
  local zadd=zper*main.skipdist.text
  local xdest=xcoord+xadd
  local ydest=ycoord+yadd
  local zdest=zcoord+zadd
  writeFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+60",xdest)
  writeFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+64",ydest)
  writeFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+68",zdest)
end

function speedenableChange() --turns on and off speedhack
  if main.speedenable.checked==true then
     if main.stogs.checked==true then
       speedhack_setSpeed(main.speeds.text)
     else
       speedhack_setSpeed(main.speedf.text)
     end
  else
    speedhack_setSpeed'1'
  end
end

function togglespeed() --speedhack toggle for hotkey
  if main.speedenable.checked==true then
    main.speedenable.checked=false
  else
    main.speedenable.checked=true
  end
end

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

function switchspeed() --toggles between speeds for speedhack
if main.stogs.checked==true then
  main.stogs.checked=false
  main.stogf.checked=true
else
  main.stogs.checked=true
  main.stogf.checked=false
end
speedenableChange()
end

function elockChange() --turns on and off energy lock script
if main.elock.checked==false then
  etimer.Enabled = false
else
    efreezeval = readFloat("[[[[[trove.exe+00E6CA40]+0]+28]+50]+170]+70")
    etimers()
end
end

function etimers() --energy lock timer
etimer = createTimer(getMainForm(),true)
timer_setInterval(etimer,100)
timer_onTimer(etimer, setener)
end

function setener(sender) --sets energy value when energy lock timer ticks
writeFloat("[[[[[trove.exe+00E6CA40]+0]+28]+50]+170]+70",efreezeval)
end

jumpkey = createHotkey("jump",VK_SPACE) --superjump hotkey
speedokey = createHotkey("togglespeed",VK_5) --speedhack on/off hotkey
speedtkey = createHotkey("switchspeed",VK_4) --speedhack toggle hotkey
skipkey = createHotkey("skip",VK_3) --skip hotkey

function close() --on close for form
if etimer ~= nil then
  etimer.destroy()
end
closeCE()
return caFree
end


function showhelp() --creates help form
help=createForm(true)
help.borderstyle=bsToolWindow
help.height=400
help.width=520
help.caption="Help"
help.title=createLabel(help)
help.title.caption="Accuskip"
help.title.left=236
help.title.top=15
help.structbox=createGroupBox(help)
help.structbox.height=350
help.structbox.caption=""
help.structbox.left=10
help.structbox.top=40
help.structbox.width=500
help.structbox.speedtext=createLabel(help.structbox)
help.structbox.speedtext.caption=[[Speedhack:
This accellerates the game speed.
Attacks seem faster, but damage is dealt on the server side, so no extra damage is done.
You can set 2 speeds to toggle between them.
Lower speeds are harder to detect by other players.
This feature can also be controlled with hotkeys 5 (on/off) and 3 (toggle speed)]]
help.structbox.speedtext.left=15
help.structbox.speedtext.top=215
help.structbox.jumptext=createLabel(help.structbox)
help.structbox.jumptext.caption=[[Superjump:
Superjump gives your jump more umpf.
With superjump you can also hold the space key and it allows you to fly up.]]
help.structbox.jumptext.left=15
help.structbox.jumptext.top=155
help.structbox.energytext=createLabel(help.structbox)
help.structbox.energytext.caption=[[Energy Lock:
This freezes the client side value for the energy.
This feature is only useful for back rolling with the Neon Ninja.]]
help.structbox.energytext.left=15
help.structbox.energytext.top=95
help.structbox.skiptext=createLabel(help.structbox)
help.structbox.skiptext.caption=[[Skipping:
To skip (teleport) press 3.
The skip distance is the distance you will travel when you skip.
Setting a skip distance too low will not teleport you far enough to pass through a wall.
Setting a skip distance too high will get corrected with the server value.]]
help.structbox.skiptext.left=15
help.structbox.skiptext.top=5
help.centerScreen()
help.OnClose = hidehelp
end

function hidehelp() --closes help form
help.destroy()
end



main=createForm(true)
main.borderstyle=bsToolWindow
main.height=205
main.width=142
main.caption="Acuskip"
main.top=115
main.left=342
main.skiptext=createLabel(main)
main.skiptext.caption="Skip Distance"
main.skiptext.left=16
main.skiptext.top=10
main.skipdist=createEdit(main)
main.skipdist.text="3"
main.skipdist.left=103
main.skipdist.top=8
main.skipdist.width=24
main.speedtext=createLabel(main)
main.speedtext.caption="Speedhack"
main.speedtext.left=29
main.speedtext.top=100
main.speedenable=createCheckBox(main)
main.speedenable.caption=nil
main.speedenable.checked=false
main.speedenable.left=108
main.speedenable.top=100
main.speedenable.OnChange=speedenableChange
main.elocktext=createLabel(main)
main.elocktext.caption="Energy Lock"
main.elocktext.left=22
main.elocktext.top=40
main.elock=createCheckBox(main)
main.elock.caption=nil
main.elock.checked=false
main.elock.left=108
main.elock.top=40
main.elock.OnChange=elockChange
main.jumptext=createLabel(main)
main.jumptext.caption="Superjump"
main.jumptext.left=28
main.jumptext.top=70
main.superjump=createCheckBox(main)
main.superjump.caption=nil
main.superjump.checked=false
main.superjump.left=108
main.superjump.top=70
main.stogs=createTRadioButton(main)
main.stogs.caption=nil
main.stogs.checked=false
main.stogs.left=20
main.stogs.top=130
main.stogs.OnChange=speedenableChange
main.stogf=createTRadioButton(main)
main.stogf.caption=nil
main.stogf.checked=false
main.stogf.left=80
main.stogf.top=130
main.stogf.OnChange=speedenableChange
main.speedf=createEdit(main)
main.speedf.text="2"
main.speedf.left=95
main.speedf.top=128
main.speedf.width=28
main.speeds=createEdit(main)
main.speeds.text="1.5"
main.speeds.left=35
main.speeds.top=128
main.speeds.width=28
main.helpbutton=createButton(main)
main.helpbutton.caption="Help"
main.helpbutton.top=170
main.helpbutton.left=53
main.helpbutton.height=24
main.helpbutton.width=40
main.helpbutton.OnClick=showhelp
main.OnClose = close

Geode11:
Code:
getAutoAttachList().add("trove.exe") --attach to trove

function sprint() --OP speedhack
  if main.speedenable.checked == true then
    local xper=(readFloat("trove.exe+CFD400"))*-1
    local yper=readFloat("trove.exe+CFD404")
    local zper=readFloat("trove.exe+CFD408")
    local xaccel=xper * main.speedf.text
    local yaccel=yper * main.speedf.text
    local zaccel=zper * main.speedf.text
    writeFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+90",xaccel)
    writeFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+94",yaccel)
    writeFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+98",zaccel)
  end
end

function togglespeed() --speedhack toggle for hotkey
  if main.speedenable.checked==true then
    main.speedenable.checked=false
  else
    main.speedenable.checked=true
  end
end

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

function float() --superjump without the jump
    writeFloat("[[[[[trove.exe+00E6CA40]+0]+28]+BC]+4]+94",15)
end

jumpkey = createHotkey("jump",VK_SPACE) --superjump hotkey
speedokey = createHotkey("togglespeed",VK_5) --speedhack on/off hotkey
speedkey = createHotkey("sprint",VK_W) --sprint hotkey
floathack = createHotkey("float",VK_3) -- lets u float for mining

function close() --on close for form
closeCE()
return caFree
end



function showhelp() --creates help form
help=createForm(true)
help.borderstyle=bsToolWindow
help.height=250
help.width=445
help.caption="Help"
help.title=createLabel(help)
help.title.caption="Geode Toolkit"
help.title.left=185
help.title.top=15
help.structbox=createGroupBox(help)
help.structbox.height=200
help.structbox.caption=""
help.structbox.left=10
help.structbox.top=40
help.structbox.width=425
help.structbox.speedtext=createLabel(help.structbox)
help.structbox.speedtext.caption=[[Speedhack:
This increases your movement speed significantly.
Use 5 to toggle it on and off.]]
help.structbox.speedtext.left=15
help.structbox.speedtext.top=110
help.structbox.jumptext=createLabel(help.structbox)
help.structbox.jumptext.caption=[[Superjump:
Superjump gives your jump more umpf.
With superjump you can also hold the space key and it allows you to fly up.]]
help.structbox.jumptext.left=15
help.structbox.jumptext.top=5
help.structbox.floattext=createLabel(help.structbox)
help.structbox.floattext.caption=[[Float hack:
Press and hold 3 to activate float hack.
This is useful for mining on the ceiling.]]
help.structbox.floattext.left=15
help.structbox.floattext.top=60
help.centerScreen()
help.OnClose = hidehelp
end

function hidehelp() --closes help form
help.destroy()
end


main=createForm(true)
main.borderstyle=bsToolWindow
main.height=135
main.width=142
main.left=342
main.top=115
main.caption="Help"
main.OnClose = close
main.speedenable=createCheckBox(main)
main.speedenable.caption=nil
main.speedenable.checked=false
main.speedenable.left=108
main.speedenable.top=40
main.jumptext=createLabel(main)
main.jumptext.caption="Superjump"
main.jumptext.left=28
main.jumptext.top=10
main.superjump=createCheckBox(main)
main.superjump.caption=nil
main.superjump.checked=false
main.superjump.left=108
main.superjump.top=10
main.speedf=createEdit(main)
main.speedf.text="15"
main.speedf.left=95
main.speedf.top=68
main.speedf.width=28
main.helpbutton=createButton(main)
main.helpbutton.caption="Help"
main.helpbutton.top=100
main.helpbutton.left=53
main.helpbutton.height=24
main.helpbutton.width=40
main.helpbutton.OnClick=showhelp
main.speedtexta=createLabel(main)
main.speedtexta.caption="Speedhack"
main.speedtexta.left=29
main.speedtexta.top=40
main.speedtextb=createLabel(main)
main.speedtextb.caption="Speed"
main.speedtextb.left=54
main.speedtextb.top=70
Cheats_mpgh.net.zip
#8 · edited 7y ago · 7y ago
Wyo
[MPGH]Wyo
Safe and clean .
#9 · 7y ago
JE
jesses71
Going to check it out
#10 · 7y ago
AL
AlexDeluxeN1
Can you add jump toggle for hotkey please
#11 · 7y ago
NI
ninjadude1
Yeah, I can work on it after work - what hotkey you want?
#12 · 7y ago
xppazar
xppazar
Geode11:
UPDATED -

Code:
getAutoAttachList().add("trove.exe") --attach to trove

function sprint() --OP speedhack
  if main.speedenable.checked == true then
    local xper=(readFloat("trove.exe+CF48B0"))*-1
    local yper=readFloat("trove.exe+CF48B4")
    local zper=readFloat("trove.exe+CF48B8")
    local xaccel=xper * main.speedf.text
    local yaccel=yper * main.speedf.text
    local zaccel=zper * main.speedf.text
    writeFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+90",xaccel)
    writeFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+94",yaccel)
    writeFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+98",zaccel)
  end
end

function togglespeed() --speedhack toggle for hotkey
  if main.speedenable.checked==true then
    main.speedenable.checked=false
  else
    main.speedenable.checked=true
  end
end

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

function float() --superjump without the jump
    writeFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+94",15)
end

jumpkey = createHotkey("jump",VK_SPACE) --superjump hotkey
speedokey = createHotkey("togglespeed",VK_5) --speedhack on/off hotkey
speedkey = createHotkey("sprint",VK_W) --sprint hotkey


function close() --on close for form
closeCE()
return caFree
end



function showhelp() --creates help form
help=createForm(true)
help.borderstyle=bsToolWindow
help.height=250
help.width=445
help.caption="Help"
help.title=createLabel(help)
help.title.caption="Geode Toolkit"
help.title.left=185
help.title.top=15
help.structbox=createGroupBox(help)
help.structbox.height=200
help.structbox.caption=""
help.structbox.left=10
help.structbox.top=40
help.structbox.width=425
help.structbox.speedtext=createLabel(help.structbox)
help.structbox.speedtext.caption=[[Speedhack:
This increases your movement speed significantly.
Use 5 to toggle it on and off.]]
help.structbox.speedtext.left=15
help.structbox.speedtext.top=110
help.structbox.jumptext=createLabel(help.structbox)
help.structbox.jumptext.caption=[[Superjump:
Superjump gives your jump more umpf.
With superjump you can also hold the space key and it allows you to fly up.]]
help.structbox.jumptext.left=15
help.structbox.jumptext.top=5
help.structbox.floattext=createLabel(help.structbox)
help.structbox.floattext.caption=[[Float hack:
Press and hold 3 to activate float hack.
This is useful for mining on the ceiling.]]
help.structbox.floattext.left=15
help.structbox.floattext.top=60
help.centerScreen()
help.OnClose = hidehelp
end

function hidehelp() --closes help form
help.destroy()
end


main=createForm(true)
main.borderstyle=bsToolWindow
main.height=135
main.width=142
main.left=342
main.top=115
main.caption="Saksocu Gray"
main.OnClose = close
main.speedenable=createCheckBox(main)
main.speedenable.caption=nil
main.speedenable.checked=false
main.speedenable.left=108
main.speedenable.top=40
main.jumptext=createLabel(main)
main.jumptext.caption="Superjump"
main.jumptext.left=28
main.jumptext.top=10
main.superjump=createCheckBox(main)
main.superjump.caption=nil
main.superjump.checked=false
main.superjump.left=108
main.superjump.top=10
main.speedf=createEdit(main)
main.speedf.text="15"
main.speedf.left=95
main.speedf.top=68
main.speedf.width=28
main.speedtexta=createLabel(main)
main.speedtexta.caption="Speedhack"
main.speedtexta.left=29
main.speedtexta.top=40
main.speedtextb=createLabel(main)
main.speedtextb.caption="Speed"
main.speedtextb.left=54
main.speedtextb.top=70
- - - Updated - - -

FARMING 11
UPDATED ----

Code:
getAutoAttachList().add("trove.exe") --attach to trove

function createTRadioButton(Parent)
local box = createComponentClass('TRadioButton', Parent)
box.Parent = Parent
return box
end

function skip() --performs the skip
  local xcoord=readFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+60")
  local ycoord=readFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+64")
  local zcoord=readFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+68")
  local xper=(readFloat("trove.exe+CF48B0"))*-1
  local yper=readFloat("trove.exe+CF48B4")
  local zper=readFloat("trove.exe+CF48B8")
  local xadd=xper*main.skipdist.text
  local yadd=yper*main.skipdist.text
  local zadd=zper*main.skipdist.text
  local xdest=xcoord+xadd
  local ydest=ycoord+yadd
  local zdest=zcoord+zadd
  writeFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+60",xdest)
  writeFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+64",ydest)
  writeFloat("[[[[[trove.exe+00E6CA58]+0]+28]+BC]+4]+68",zdest)
end

function speedenableChange() --turns on and off speedhack
  if main.speedenable.checked==true then
     if main.stogs.checked==true then
       speedhack_setSpeed(main.speeds.text)
     else
       speedhack_setSpeed(main.speedf.text)
     end
  else
    speedhack_setSpeed'1'
  end
end

function togglespeed() --speedhack toggle for hotkey
  if main.speedenable.checked==true then
    main.speedenable.checked=false
  else
    main.speedenable.checked=true
  end
end

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

function switchspeed() --toggles between speeds for speedhack
if main.stogs.checked==true then
  main.stogs.checked=false
  main.stogf.checked=true
else
  main.stogs.checked=true
  main.stogf.checked=false
end
speedenableChange()
end

function elockChange() --turns on and off energy lock script
if main.elock.checked==false then
  etimer.Enabled = false
else
    efreezeval = readFloat("[[[[[trove.exe+00E6CA58]+0]+28]+50]+170]+70")
    etimers()
end
end

function etimers() --energy lock timer
etimer = createTimer(getMainForm(),true)
timer_setInterval(etimer,100)
timer_onTimer(etimer, setener)
end

function setener(sender) --sets energy value when energy lock timer ticks
writeFloat("[[[[[trove.exe+00E6CA58]+0]+28]+50]+170]+70",efreezeval)
end

jumpkey = createHotkey("jump",VK_SPACE) --superjump hotkey
speedokey = createHotkey("togglespeed",VK_5) --speedhack on/off hotkey
speedtkey = createHotkey("switchspeed",VK_4) --speedhack toggle hotkey
skipkey = createHotkey("skip",VK_3) --skip hotkey

function close() --on close for form
if etimer ~= nil then
  etimer.destroy()
end
closeCE()
return caFree
end


function showhelp() --creates help form
help=createForm(true)
help.borderstyle=bsToolWindow
help.height=400
help.width=520
help.caption="Help"
help.title=createLabel(help)
help.title.caption="Accuskip"
help.title.left=236
help.title.top=15
help.structbox=createGroupBox(help)
help.structbox.height=350
help.structbox.caption=""
help.structbox.left=10
help.structbox.top=40
help.structbox.width=500
help.structbox.speedtext=createLabel(help.structbox)
help.structbox.speedtext.caption=[[Speedhack:
This accellerates the game speed.
Attacks seem faster, but damage is dealt on the server side, so no extra damage is done.
You can set 2 speeds to toggle between them.
Lower speeds are harder to detect by other players.
This feature can also be controlled with hotkeys 5 (on/off) and 3 (toggle speed)]]
help.structbox.speedtext.left=15
help.structbox.speedtext.top=215
help.structbox.jumptext=createLabel(help.structbox)
help.structbox.jumptext.caption=[[Superjump:
Superjump gives your jump more umpf.
With superjump you can also hold the space key and it allows you to fly up.]]
help.structbox.jumptext.left=15
help.structbox.jumptext.top=155
help.structbox.energytext=createLabel(help.structbox)
help.structbox.energytext.caption=[[Energy Lock:
This freezes the client side value for the energy.
This feature is only useful for back rolling with the Neon Ninja.]]
help.structbox.energytext.left=15
help.structbox.energytext.top=95
help.structbox.skiptext=createLabel(help.structbox)
help.structbox.skiptext.caption=[[Skipping:
To skip (teleport) press 3.
The skip distance is the distance you will travel when you skip.
Setting a skip distance too low will not teleport you far enough to pass through a wall.
Setting a skip distance too high will get corrected with the server value.]]
help.structbox.skiptext.left=15
help.structbox.skiptext.top=5
help.centerScreen()
help.OnClose = hidehelp
end

function hidehelp() --closes help form
help.destroy()
end



main=createForm(true)
main.borderstyle=bsToolWindow
main.height=205
main.width=142
main.caption="Acuskip"
main.top=115
main.left=342
main.skiptext=createLabel(main)
main.skiptext.caption="Skip Distance"
main.skiptext.left=16
main.skiptext.top=10
main.skipdist=createEdit(main)
main.skipdist.text="3"
main.skipdist.left=103
main.skipdist.top=8
main.skipdist.width=24
main.speedtext=createLabel(main)
main.speedtext.caption="Speedhack"
main.speedtext.left=29
main.speedtext.top=100
main.speedenable=createCheckBox(main)
main.speedenable.caption=nil
main.speedenable.checked=false
main.speedenable.left=108
main.speedenable.top=100
main.speedenable.OnChange=speedenableChange
main.elocktext=createLabel(main)
main.elocktext.caption="Energy Lock"
main.elocktext.left=22
main.elocktext.top=40
main.elock=createCheckBox(main)
main.elock.caption=nil
main.elock.checked=false
main.elock.left=108
main.elock.top=40
main.elock.OnChange=elockChange
main.jumptext=createLabel(main)
main.jumptext.caption="Superjump"
main.jumptext.left=28
main.jumptext.top=70
main.superjump=createCheckBox(main)
main.superjump.caption=nil
main.superjump.checked=false
main.superjump.left=108
main.superjump.top=70
main.stogs=createTRadioButton(main)
main.stogs.caption=nil
main.stogs.checked=false
main.stogs.left=20
main.stogs.top=130
main.stogs.OnChange=speedenableChange
main.stogf=createTRadioButton(main)
main.stogf.caption=nil
main.stogf.checked=false
main.stogf.left=80
main.stogf.top=130
main.stogf.OnChange=speedenableChange
main.speedf=createEdit(main)
main.speedf.text="2"
main.speedf.left=95
main.speedf.top=128
main.speedf.width=28
main.speeds=createEdit(main)
main.speeds.text="1.5"
main.speeds.left=35
main.speeds.top=128
main.speeds.width=28
main.helpbutton=createButton(main)
main.helpbutton.caption="Help"
main.helpbutton.top=170
main.helpbutton.left=53
main.helpbutton.height=24
main.helpbutton.width=40
main.helpbutton.OnClick=showhelp
main.OnClose = close
#13 · edited 7y ago · 7y ago
NI
ninjadude1
Thanks - you beat me to updating this... More efficient scripts to come BTW
#14 · 7y ago
CH
chaosf1re
can we get updated code? it doesnt work after today's update
#15 · 7y ago
Posts 1–15 of 124 · Page 1 of 9
…

Post a Reply

Similar Threads

  • (Re-Release) Renown Farm After Battleye Update.By ViciousVivid in Rainbow Six: Siege Discussions & Help
    42Last post 8y ago
  • Warrock VIP Hack Released/Updated - CS:S HACK UPDATED + Screenshots!By Dave84311 in Hack/Release News
    59Last post 16y ago
  • [release] UpdatedBy Death526 in WarRock - International Hacks
    24Last post 19y ago
  • (release)(Update) RWH v2.0 StableBy apezwijn in WarRock - International Hacks
    16Last post 18y ago
  • [release][update] RWH v2,2By apezwijn in WarRock - International Hacks
    33Last post 18y ago

Tags for this Thread

None