| View previous topic :: View next topic |
| Author |
Message |
nicebro2 Newbie cheater
Reputation: 0
Joined: 07 Jun 2016 Posts: 22
|
Posted: Thu Mar 12, 2020 7:23 pm Post subject: i can hotkey delay? |
|
|
i want change value 500ms delay
ex) F9 click > 500ms later > change value 4294967295
it is possible?
| Description: |
|
| Filesize: |
5.17 KB |
| Viewed: |
2311 Time(s) |

|
|
|
| Back to top |
|
 |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
Posted: Fri Mar 13, 2020 5:48 am Post subject: |
|
|
In Lua:
| Code: | function sleepNchange()
sleep(0.500) -- 0.500ms, try change to 1000 or 5000 to test
showMessage("change value 4294967295")
-- or change value of the address here
end
if key1 then key1.destroy(); key1=nil end
key1 = createHotkey(sleepNchange, VK_F9) |
_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL |
|
| Back to top |
|
 |
nicebro2 Newbie cheater
Reputation: 0
Joined: 07 Jun 2016 Posts: 22
|
Posted: Fri Mar 13, 2020 7:16 am Post subject: |
|
|
| Corroder wrote: | In Lua:
| Code: | function sleepNchange()
sleep(0.500) -- 0.500ms, try change to 1000 or 5000 to test
showMessage("change value 4294967295")
-- or change value of the address here
end
if key1 then key1.destroy(); key1=nil end
key1 = createHotkey(sleepNchange, VK_F9) |
|
thank for your answer !
but i see only message box
nothing change value
|
|
| Back to top |
|
 |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
Posted: Fri Mar 13, 2020 8:10 am Post subject: |
|
|
Because I assumed you already knew how to changed the value on an address.
| Code: | local al = AddressList or getAddressList()
local mr1 = al.getMemoryRecordByDescription("Blablabla") --> CHANGE Blablabla to YOUR HACK DESCRIPTION HERE
if not mr1 then error("Memory record doesn't exist") end
function sleepNchange()
sleep(0.500)
mr1.Value = 4294967295
showMessage("Value has changed to 4294967295 on 0.500ms")
end
if key1 then key1.destroy(); key1=nil end
key1 = createHotkey(sleepNchange, VK_F9) |
_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL |
|
| Back to top |
|
 |
nicebro2 Newbie cheater
Reputation: 0
Joined: 07 Jun 2016 Posts: 22
|
Posted: Fri Mar 13, 2020 8:36 am Post subject: |
|
|
| Corroder wrote: | Because I assumed you already knew how to changed the value on an address.
| Code: | local al = AddressList or getAddressList()
local mr1 = al.getMemoryRecordByDescription("Blablabla") --> CHANGE Blablabla to YOUR HACK DESCRIPTION HERE
if not mr1 then error("Memory record doesn't exist") end
function sleepNchange()
sleep(0.500)
mr1.Value = 4294967295
showMessage("Value has changed to 4294967295 on 0.500ms")
end
if key1 then key1.destroy(); key1=nil end
key1 = createHotkey(sleepNchange, VK_F9) |
|
Thank you very much.
this is perfect
I Can add this to the cheat table?
and mr1.Value = (description)
i can this?
|
|
| Back to top |
|
 |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
Posted: Fri Mar 13, 2020 10:20 am Post subject: |
|
|
| sysy5024 wrote: |
Thank you very much.
this is perfect
I Can add this to the cheat table?
and mr1.Value = (description)
i can this? |
I am not understand what you mean about.
_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL |
|
| Back to top |
|
 |
nicebro2 Newbie cheater
Reputation: 0
Joined: 07 Jun 2016 Posts: 22
|
|
| Back to top |
|
 |
|