Multi hack Farming11/Geode11

Posts 1630 of 30 · Page 2 of 2
Tried skip got this ERROR Error:[string "form_show(main) --show main window
..."]:14: attempt to perform arithmetic on a nil value (local 'xcoord')

Energy Lock didnt work

Also Geode Didnt work got Error:attempt to call a nil value
I hope this gets approved soon before it gets outdated again. <3 Thanks
@moderator or @mod Not sure how to do that... 11 hours and not approved.

GEODE didnt work and Skip didnt work with the first one. But you did post an updated version, so Ill try that. Speed hack works but makes your jump all messed up. I really want this for Skip and nothing else.

- - - Updated - - -

Updated - Approve new one?
I will be fair, I was not up to date when they came by for approval - this is my fault.
Quote Originally Posted by ninjadude1 View Post
I will be fair, I was not up to date when they came by for approval - this is my fault.
Make a new post, and have it tagged as Release. It will be approved quicker.
Full lua version of farming 11

Open CE - press Ctrl+Alt+L - Past the below script into the box - Save as CETRAINER

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


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

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+00E653D8]+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+00E653D8]+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+00E653D8]+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.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=createRadioButton(main)
main.stogs.caption=nil
main.stogs.checked=false
main.stogs.left=20
main.stogs.top=130
main.stogs.OnChange=speedenableChange
main.stogf=createRadioButton(main)
main.stogf.caption=nil
main.stogf.checked=true
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
- - - Updated - - -

Actually, I am going to post this and Geode11 in the coding section - Watch for an update there
Use google tradutor para mais perguntas - teclas de atalho são 3 para teletransporte (skip) - 4 para alternar a configuração de velocidade de corte de velocidade - 5 para ligar / desligar a velocidade de alternância
how do i apply cheat?
"Invalid Attachment specified. If you followed a valid link, please notify the administrator."

So, just waiting on them to approve or deny this...
yo ill give this a try when my fort is updated
Posts 1630 of 30 · Page 2 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?