Page 11 of 11 FirstFirst ... 91011
Results 151 to 164 of 164
  1. #151
    Moonmasterr's Avatar
    Join Date
    Dec 2016
    Gender
    female
    Posts
    2
    Reputation
    10
    Thanks
    0

    m

    new pointers?

  2. #152
    abraxus's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    1
    My Mood
    Chatty
    Quote Originally Posted by Moonmasterr View Post
    new pointers?
    Hey, i posted source code yesterday that you can use to get the pointer each time the game updates in the forums . Just open trove, compile, run, and press 0.

  3. #153
    IPacOne's Avatar
    Join Date
    Oct 2019
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    1
    Someone can paste new pointers?

  4. #154
    WhatApity's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    1
    Help us hackers

  5. #155
    WhatApity's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    1
    No pointers, so

  6. #156
    Svanorskii's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    60
    Reputation
    10
    Thanks
    37
    // 20th June.

    BaseAddr = trove.exe+00F35B8C

  7. The Following User Says Thank You to Svanorskii For This Useful Post:

    WhatApity (06-20-2020)

  8. #157
    0rbit~'s Avatar
    Join Date
    Jun 2020
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Im kinda new to this, anybody can tell me what this script is exactly doing?

  9. #158
    huarlo's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 0rbit~ View Post
    Im kinda new to this, anybody can tell me what this script is exactly doing?
    IDK either :c

  10. #159
    Trover2's Avatar
    Join Date
    Jun 2020
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    182
    My Mood
    Psychedelic
    Tutorial for Use:

    Open cheat engine
    CTRL + ALT + L or (click "Table" > "Show Cheat Table Lua Script"

    Copy this code and click Execute.

    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+00F35B8C]+0]+28]+C4]+4]+60") --Loading in the current xyz coords
      local ycoord=readFloat("[[[[[trove.exe+00F35B8C]+0]+28]+C4]+4]+64")
      local zcoord=readFloat("[[[[[trove.exe+00F35B8C]+0]+28]+C4]+4]+68")
      local xper=readFloat("[[[[[trove.exe+00F35B8C]+4]+24]+84]+0]+100")
      local yper=readFloat("[[[[[trove.exe+00F35B8C]+4]+24]+84]+0]+104")
      local zper=readFloat("[[[[[trove.exe+00F35B8C]+4]+24]+84]+0]+108")
      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+00F35B8C]+0]+28]+C4]+4]+60",xdest) --Writes speed values
      writeFloat("[[[[[trove.exe+00F35B8C]+0]+28]+C4]+4]+64",ydest)
      writeFloat("[[[[[trove.exe+00F35B8C]+0]+28]+C4]+4]+68",zdest)
    end
    
    function jump() --boosts jumps for superjump
      if main.superjump.checked==true then
        writeFloat("[[[[[trove.exe+00F35B8C]+0]+28]+C4]+4]+94",15)
      end
    end
    
    jumpkey = createHotkey("jump",VK_SPACE) --superjump 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
    
    main=createForm(true)
    main.borderstyle=bsToolWindow
    main.height=60
    main.width=142
    main.caption="skip and jump"
    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=90
    main.skipdist.top=8
    main.skipdist.width=24
    main.jumptext=createLabel(main)
    main.jumptext.caption="Superjump"
    main.jumptext.left=16
    main.jumptext.top=30
    main.superjump=createCheckBox(main)
    main.superjump.caption=nil
    main.superjump.checked=false
    main.superjump.left=90
    main.superjump.top=30
    main.OnClose = close
    Hotkey for Skip is Button "3"

  11. #160
    WhatApity's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    1
    New pointer, please.

  12. #161
    Trover2's Avatar
    Join Date
    Jun 2020
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    182
    My Mood
    Psychedelic
    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+0106D48C]+0]+28]+C4]+4]+60") --Loading in the current xyz coords
      local ycoord=readFloat("[[[[[trove.exe+0106D48C]+0]+28]+C4]+4]+64")
      local zcoord=readFloat("[[[[[trove.exe+0106D48C]+0]+28]+C4]+4]+68")
      local xper=readFloat("[[[[[trove.exe+0106D48C]+4]+24]+84]+0]+100")
      local yper=readFloat("[[[[[trove.exe+0106D48C]+4]+24]+84]+0]+104")
      local zper=readFloat("[[[[[trove.exe+0106D48C]+4]+24]+84]+0]+108")
      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+0106D48C]+0]+28]+C4]+4]+60",xdest) --Writes speed values
      writeFloat("[[[[[trove.exe+0106D48C]+0]+28]+C4]+4]+64",ydest)
      writeFloat("[[[[[trove.exe+0106D48C]+0]+28]+C4]+4]+68",zdest)
    end
    
    function jump() --boosts jumps for superjump
      if main.superjump.checked==true then
        writeFloat("[[[[[trove.exe+0106D48C]+0]+28]+C4]+4]+94",15)
      end
    end
    
    jumpkey = createHotkey("jump",VK_SPACE) --superjump 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
    
    main=createForm(true)
    main.borderstyle=bsToolWindow
    main.height=60
    main.width=142
    main.caption="skip and jump"
    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=90
    main.skipdist.top=8
    main.skipdist.width=24
    main.jumptext=createLabel(main)
    main.jumptext.caption="Superjump"
    main.jumptext.left=16
    main.jumptext.top=30
    main.superjump=createCheckBox(main)
    main.superjump.caption=nil
    main.superjump.checked=false
    main.superjump.left=90
    main.superjump.top=30
    main.OnClose = close

  13. The Following User Says Thank You to Trover2 For This Useful Post:

    DJRoxxic (06-30-2020)

  14. #162
    WhatApity's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    1
    New pointer, please ...

  15. #163
    Trover2's Avatar
    Join Date
    Jun 2020
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    182
    My Mood
    Psychedelic
    Quote Originally Posted by WhatApity View Post
    New pointer, please ...
    Code:
    getAutoAttachList().add("trove.exe") --attach to trove
    
    function skip() --performs the skip
      local xcoord=readFloat("[[[[[trove.exe+00F3436C]+0]+28]+C4]+4]+60") --Loading in the current xyz coords
      local ycoord=readFloat("[[[[[trove.exe+00F3436C]+0]+28]+C4]+4]+64")
      local zcoord=readFloat("[[[[[trove.exe+00F3436C]+0]+28]+C4]+4]+68")
      local xper=readFloat("[[[[[trove.exe+00F3436C]+4]+24]+84]+0]+100")
      local yper=readFloat("[[[[[trove.exe+00F3436C]+4]+24]+84]+0]+104")
      local zper=readFloat("[[[[[trove.exe+00F3436C]+4]+24]+84]+0]+108")
      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+00F3436C]+0]+28]+C4]+4]+60",xdest) --Writes speed values
      writeFloat("[[[[[trove.exe+00F3436C]+0]+28]+C4]+4]+64",ydest)
      writeFloat("[[[[[trove.exe+00F3436C]+0]+28]+C4]+4]+68",zdest)
    end
    
    function sprint() --OP speedhack
      if main.speedenable.checked == true then
        local xper=readFloat("[[[[[trove.exe+00F3436C]+4]+24]+84]+0]+100")
        local yper=readFloat("[[[[[trove.exe+00F3436C]+4]+24]+84]+0]+104")
        local zper=readFloat("[[[[[trove.exe+00F3436C]+4]+24]+84]+0]+108")
        local xaccel=xper * main.speedf.text
        local yaccel=yper * main.speedf.text
        local zaccel=zper * main.speedf.text
        writeFloat("[[[[[trove.exe+00F3436C]+0]+28]+C4]+4]+90",xaccel)
        writeFloat("[[[[[trove.exe+00F3436C]+0]+28]+C4]+4]+94",yaccel)
        writeFloat("[[[[[trove.exe+00F3436C]+0]+28]+C4]+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+00F3436C]+0]+28]+C4]+4]+94",15)
      end
    end
    
    function float() --superjump without the jump
        writeFloat("[[[[[trove.exe+00F3436C]+0]+28]+C4]+4]+94",15)
    end
    
    skipkey = createHotkey("skip",VK_3) --skip hotkey
    jumpkey = createHotkey("jump",VK_SPACE) --superjump hotkey
    speedokey = createHotkey("togglespeed",VK_SHIFT) --speedhack on/off hotkey
    speedkey = createHotkey("sprint",VK_SHIFT) --sprint hotkey
    
    function close() --on close for form
    closeCE()
    return caFree
    end
    
    main=createForm(true)
    main.borderstyle=bsToolWindow
    main.height=135
    main.width=142
    main.left=342
    main.top=115
    main.caption="Farm's Trainer"
    main.OnClose = close
    main.speedenable=createLabel(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="30"
    main.speedf.left=95
    main.speedf.top=68
    main.speedf.width=28
    main.speedtexta=createLabel(main)
    main.speedtexta.caption="Speedhack Hold Shift"
    main.speedtexta.left=19
    main.speedtexta.top=40
    main.speedtextb=createLabel(main)
    main.speedtextb.caption="Speed Set :"
    main.speedtextb.left=34
    main.speedtextb.top=70
    main.skiptext=createLabel(main)
    main.skiptext.caption="Skip Distance"
    main.skiptext.left=22
    main.skiptext.top=100
    main.skipdist=createEdit(main)
    main.skipdist.text="3"
    main.skipdist.left=100
    main.skipdist.top=100
    main.skipdist.width=24
    main.OnClose = close

  16. #164
    dumacaigi's Avatar
    Join Date
    Apr 2017
    Gender
    female
    Posts
    7
    Reputation
    10
    Thanks
    1

    Smile

    update pls

Page 11 of 11 FirstFirst ... 91011

Similar Threads

  1. New Update Here
    By Funny-Man in forum CrossFire Discussions
    Replies: 1
    Last Post: 02-14-2011, 06:39 PM
  2. Put some hacks that work now with update here
    By warogen in forum Combat Arms Discussions
    Replies: 16
    Last Post: 04-09-2010, 01:15 AM
  3. [Info] CF Christmas Update Is Here!! Check It Out
    By Grim in forum CrossFire Hacks & Cheats
    Replies: 11
    Last Post: 12-17-2009, 08:20 AM
  4. Replies: 10
    Last Post: 08-15-2009, 02:37 PM
  5. **UPDATE** New Undetected Hack See Video HERE *LINK ADDED*
    By Methadone727 in forum WarRock - International Hacks
    Replies: 17
    Last Post: 05-17-2007, 07:42 AM