Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


[Help] Cheat Table framework code AOB scan syntax error.

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General Discussions
View previous topic :: View next topic  
Author Message
Epica
Newbie cheater
Reputation: 0

Joined: 31 Mar 2019
Posts: 14

PostPosted: Tue Apr 02, 2019 7:44 pm    Post subject: [Help] Cheat Table framework code AOB scan syntax error. Reply with quote

I get this error every time I try to "Assign to current cheat table", I don't know what I am doing wrong and I would like some help.

This is what the script I'm trying to do looks like:





[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
aobscan(arraystart,?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 01 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 01 0? 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?0 ?? ?? ?? 00 00 00 00 0? 0? 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 01 01 00 00 00 00 00 00 B4 00 00 00 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 0? 0? 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 01 0? 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 0? 00 00 00 00 00 00 00
registersymbol(_worm)
label(_worm)

arraystart+A8:
_worm



[DISABLE]
unregistersymbol(_worm)
//code from here till the end of the code will be used to disable the cheat









Thanks for any help you can give me.
Edit: Forgot to fully write the error, it looks like this "Syntax error. AOBSCAN(name, 11 22 33 ** 55)"
Back to top
View user's profile Send private message
TheyCallMeTim13
Wiki Contributor
Reputation: 50

Joined: 24 Feb 2017
Posts: 976
Location: Pluto

PostPosted: Wed Apr 03, 2019 4:51 am    Post subject: Reply with quote

You forgot the closing bracket for the AOBscan.

Code:
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
aobscan(arraystart,?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 01 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 01 0? 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?0 ?? ?? ?? 00 00 00 00 0? 0? 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 01 01 00 00 00 00 00 00 B4 00 00 00 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 0? 0? 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 01 0? 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? 1? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 0? 00 00 00 00 00 00 00) /// Needed a closing bracket here.
registersymbol(_worm)
label(_worm)

arraystart+A8:
_worm



[DISABLE]
unregistersymbol(_worm)
//code from here till the end of the code will be used to disable the cheat

_________________
Back to top
View user's profile Send private message Visit poster's website
Epica
Newbie cheater
Reputation: 0

Joined: 31 Mar 2019
Posts: 14

PostPosted: Wed Apr 03, 2019 11:17 am    Post subject: Reply with quote

Thanks, I don't know how I didn't realize that, but now it shows me this error: "Error in line 5 (label(_worm)) :label_worm is not defined in the script".

I hope you can help me with this too.
Back to top
View user's profile Send private message
TheyCallMeTim13
Wiki Contributor
Reputation: 50

Joined: 24 Feb 2017
Posts: 976
Location: Pluto

PostPosted: Wed Apr 03, 2019 11:38 am    Post subject: Reply with quote

On mobile, but put a : after the label under the aob symbol. Id also put the registersymbol after the label declaration.
_________________
Back to top
View user's profile Send private message Visit poster's website
Epica
Newbie cheater
Reputation: 0

Joined: 31 Mar 2019
Posts: 14

PostPosted: Wed Apr 03, 2019 1:55 pm    Post subject: Reply with quote

Thank you! I admire your help, have a good day.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General Discussions All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites