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 › Trove Coding & Resources › LUA - TP Hack

LUA - TP Hack

Posts 1–15 of 18 · Page 1 of 2
NI
ninjadude1
LUA - TP Hack
Many people have asked me in game for the code to my TP hack - This is a hack that is directional (meaning it TP's the direction that you aim) - here is the code I use for the hack

Code:
function skip() --performs the skip
  local xcoord=readFloat("[[[[[trove.exe+00E629C4]+0]+28]+BC]+4]+60") --Loading in the current xyz coords
  local ycoord=readFloat("[[[[[trove.exe+00E629C4]+0]+28]+BC]+4]+64")
  local zcoord=readFloat("[[[[[trove.exe+00E629C4]+0]+28]+BC]+4]+68")
  local xper=(readFloat("trove.exe+CF30B8"))*-1 --Loading in the direction player is pointing xyz
  local yper=readFloat("trove.exe+CF30BC")
  local zper=readFloat("trove.exe+CF30C0")
  local xadd=xper*3 --calculating distance to be traveled in each direction/currently this travels 3 blocks whichever direction you point, the 3 could be replaced with a differnt number or a variable
  local yadd=yper*3
  local zadd=zper*3
  local xdest=xcoord+xadd --calculating the new xyz coords
  local ydest=ycoord+yadd
  local zdest=zcoord+zadd
  writeFloat("[[[[[trove.exe+00E629C4]+0]+28]+BC]+4]+60",xdest) --writing the new xyz coords
  writeFloat("[[[[[trove.exe+00E629C4]+0]+28]+BC]+4]+64",ydest)
  writeFloat("[[[[[trove.exe+00E629C4]+0]+28]+BC]+4]+68",zdest)
end

skipkey = createHotkey("skip",VK_3) --skip hotkey set to 3
If you have questions please feel free to post here or message me on ******* if you know who I am (but don't expect help on ******* unless I know who you are).


More code to come - superjump - Energylock - Geode speed hack
#1 · edited 8y ago · 8y ago
xppazar
xppazar
Teleports you back.
#2 · 8y ago
NI
ninjadude1
You likely have a number reversed somewhere - If you invert the 3 (to -3) which is the teleport distance I'm sure it would fix the issue, but it will make this read worse.
#3 · 8y ago
xppazar
xppazar
Update pls.
#4 · 8y ago
NI
ninjadude1
Updated
Code:
function skip() --performs the skip
  local xcoord=readFloat("[[[[[trove.exe+00E62A28]+0]+28]+BC]+4]+60")
  local ycoord=readFloat("[[[[[trove.exe+00E62A28]+0]+28]+BC]+4]+64")
  local zcoord=readFloat("[[[[[trove.exe+00E62A28]+0]+28]+BC]+4]+68")
  local xper=(readFloat("trove.exe+CDE228"))*-1
  local yper=readFloat("trove.exe+CDE22C")
  local zper=readFloat("trove.exe+CDE230")
  local xadd=xper*3
  local yadd=yper*3
  local zadd=zper*3
  local xdest=xcoord+xadd
  local ydest=ycoord+yadd
  local zdest=zcoord+zadd
  writeFloat("[[[[[trove.exe+00E62A28]+0]+28]+BC]+4]+60",xdest)
  writeFloat("[[[[[trove.exe+00E62A28]+0]+28]+BC]+4]+64",ydest)
  writeFloat("[[[[[trove.exe+00E62A28]+0]+28]+BC]+4]+68",zdest)
end
#5 · 8y ago
xppazar
xppazar
Update pls
#6 · 8y ago
NI
ninjadude1
Code:
function skip() --performs the skip
  local xcoord=readFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+60")
  local ycoord=readFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+64")
  local zcoord=readFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+68")
  local xper=(readFloat("trove.exe+CFA580"))*-1
  local yper=readFloat("trove.exe+CFA584")
  local zper=readFloat("trove.exe+CFA588")
  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+00E653D8]+0]+28]+BC]+4]+60",xdest)
  writeFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+64",ydest)
  writeFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+68",zdest)
end
#7 · 8y ago
xppazar
xppazar
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip()
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip()
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
#8 · 8y ago
NI
ninjadude1
Are you sure you have CE attached to trove.exe?
#9 · 8y ago
AL
AlexDeluxeN1
Quote Originally Posted by xppazar View Post
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip()
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip()
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
same error
#10 · 8y ago
XO
xoetirc
Quote Originally Posted by AlexDeluxeN1 View Post
same error
either outdated version or trove isnt attached - not outdated, checked with mine
#11 · 8y ago
xppazar
xppazar
Attached to trove. Error:[string "function skip() --performs the skip
..."]:8: attempt to index a nil value (global 'main')
#12 · 8y ago
NI
ninjadude1
Ahhh.. I know what I did wrong - I left the variable I use in my farming11 script in there - I copied this straight out of the script - Replace "main.skipdist.text" with whatever you want you TP distance to be - I recommend 3 - should look like

Code:
function skip() --performs the skip
  local xcoord=readFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+60")
  local ycoord=readFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+64")
  local zcoord=readFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+68")
  local xper=(readFloat("trove.exe+CFA580"))*-1
  local yper=readFloat("trove.exe+CFA584")
  local zper=readFloat("trove.exe+CFA588")
  local xadd=xper*3
  local yadd=yper*3
  local zadd=zper*3
  local xdest=xcoord+xadd
  local ydest=ycoord+yadd
  local zdest=zcoord+zadd
  writeFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+60",xdest)
  writeFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+64",ydest)
  writeFloat("[[[[[trove.exe+00E653D8]+0]+28]+BC]+4]+68",zdest)
end
#13 · 8y ago
xppazar
xppazar
its outdated atm

- - - Updated - - -

Quote Originally Posted by xppazar View Post
its outdated atm
Updated /12.08.2018/

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+CFD454"))*-1
local yper=readFloat("trove.exe+CFD458")
local zper=readFloat("trove.exe+CFD45C")
local xadd=xper*3
local yadd=yper*3
local zadd=zper*3
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

skipkey = createHotkey("skip",VK_3) --skip hotkey set to 3
#14 · edited 7y ago · 7y ago
NI
ninjadude1
See my other post - it has this code in it.

https://www.mpgh.net/forum/showthread.php?t=1388230
#15 · 7y ago
Posts 1–15 of 18 · Page 1 of 2

Post a Reply

Similar Threads

  • KasHack (Lua Gmod Hack)By Jaos in Garry's Mod Discussions & Help
    14Last post 13y ago
  • PayDay 2 LUA-SCRIPT-HACK + DLC UNLOCKER (v3)By DarkGamer1379 in Payday 2 Hacks & Cheats
    44Last post 11y ago
  • LUA Money Hack and Original Payday2 Steam Version Banned risk ?By bRi4NY in Payday 2 Hacks & Cheats
    5Last post 12y ago
  • PayDay 2 LUA-SCRIPT-HACK + DLC Unlocker by DarkGamer1379By DarkGamer1379 in Payday 2 Hacks & Cheats
    26Last post 12y ago
  • PayDay 2 LUA-SCRIPT-HACK + DLC UNLOCKER - V4By DarkGamer1379 in Payday 2 Hacks & Cheats
    157Last post 11y ago

Tags for this Thread

None