View previous topic :: View next topic |
Author |
Message |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
Posted: Sun May 17, 2020 6:35 am Post subject: |
|
|
Copy paste?
_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL |
|
Back to top |
|
 |
skgyqls0730 How do I cheat?
Reputation: 0
Joined: 17 May 2020 Posts: 5
|
Posted: Sun May 17, 2020 7:01 am Post subject: |
|
|
Corroder wrote: | Copy paste? |
I've been referring this, but I don't know.
https ://forum. cheatengine. org/viewtopic.php?t=608926&sid=01cebd0d305a29f8b0db0681e458bc16
_________________
I'm studying a cheat engine |
|
Back to top |
|
 |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
Posted: Sun May 17, 2020 7:19 am Post subject: |
|
|
Yes, but the error said:
..."]:8: syntax error near '10' Error
that means there are mistyping or script syntax error at line 8 on your script.
We don't know what is line 8 contains. Because you do not post complete script and the error is not on your posted script.
_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL |
|
Back to top |
|
 |
skgyqls0730 How do I cheat?
Reputation: 0
Joined: 17 May 2020 Posts: 5
|
Posted: Sun May 17, 2020 7:30 am Post subject: |
|
|
Corroder wrote: | Yes, but the error said:
..."]:8: syntax error near '10' Error
that means there are mistyping or script syntax error at line 8 on your script.
We don't know what is line 8 contains. Because you do not post complete script and the error is not on your posted script. |
Can you tell me how to send key inputs at specific pointer value
_________________
I'm studying a cheat engine |
|
Back to top |
|
 |
AylinCE Grandmaster Cheater Supreme
Reputation: 37
Joined: 16 Feb 2017 Posts: 1516
|
Posted: Sun May 17, 2020 7:41 am Post subject: |
|
|
You may need to run some tests.
Make sure your code gives you a valid value.
To make a trial without code;
Code: | local value=211
if value > 271 then --If between 271 - 0
print("Key active")
else
print("No command above 271")
end |
Now test with code;
Code: | timer.OnTimer = function(timer)
Value=tonumber(AddressList.getMemoryRecordByDescription('PARRY').Value)
--print(Value) --you should see if it is a valid value.
if Value > 271 then
keyDown (0x48)
print("Key active! Value: "..Value)
Sleep 100
keyUp (0x48) --I think it will be necessary to remove the keypress.
--else
--timer.Enabled=false
--print("No command above 271")
end
end |
_________________
|
|
Back to top |
|
 |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
|
Back to top |
|
 |
skgyqls0730 How do I cheat?
Reputation: 0
Joined: 17 May 2020 Posts: 5
|
Posted: Sun May 17, 2020 8:16 am Post subject: |
|
|
Aylin wrote: | You may need to run some tests.
Make sure your code gives you a valid value.
To make a trial without code;
Code: | local value=211
if value > 271 then --If between 271 - 0
print("Key active")
else
print("No command above 271")
end |
Now test with code;
Code: | timer.OnTimer = function(timer)
Value=tonumber(AddressList.getMemoryRecordByDescription('PARRY').Value)
--print(Value) --you should see if it is a valid value.
if Value > 271 then
keyDown (0x48)
print("Key active! Value: "..Value)
Sleep 100
keyUp (0x48) --I think it will be necessary to remove the keypress.
--else
--timer.Enabled=false
--print("No command above 271")
end
end |
|
Wow thanks !
but Error:[string "..."]:22: attempt to index a nil value (global 'timer')
Script Error
+ i fix it thanks!!
Why does this error
_________________
I'm studying a cheat engine |
|
Back to top |
|
 |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
Posted: Sun May 17, 2020 8:38 am Post subject: |
|
|
Quote: | but Error:[string "..."]:22: attempt to index a nil value (global 'timer')
Script Error
+ i fix it thanks!!
Why does this error
|
Because of the timer never state or make yet, so the timer present as NIL because it not exists.
And why you delete the first topic post?. You will get a warning 'Delete post on answer'. If continue then you will be banned.
_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL |
|
Back to top |
|
 |
skgyqls0730 How do I cheat?
Reputation: 0
Joined: 17 May 2020 Posts: 5
|
Posted: Sun May 17, 2020 8:41 am Post subject: |
|
|
Corroder wrote: | Quote: | but Error:[string "..."]:22: attempt to index a nil value (global 'timer')
Script Error
+ i fix it thanks!!
Why does this error
|
Because of the timer never state or make yet, so the timer present as NIL because it not exists. |
I succeeded in fixing it
It's input elsewhere. but I can't type the key in the game.
_________________
I'm studying a cheat engine |
|
Back to top |
|
 |
|