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 


Script not working

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General Gamehacking
View previous topic :: View next topic  
Author Message
Amami De Kaito
Expert Cheater
Reputation: 5

Joined: 06 Feb 2013
Posts: 110
Location: 3/44

PostPosted: Tue Apr 30, 2013 12:01 am    Post subject: Script not working Reply with quote

Code:
[ENABLE]
assert(Tutorial-i386.exe+22988,8B83????????3D????????752C8B83????????B201)
alloc(newmem,2048)
label(originalcode)
label(score)
label(iscore)
label(base_score)
registersymbol(iscore)
registersymbol(base_score)

//============
newmem:
//============

score:
pushfd
mov [base_score],ebx
cmp [iscore],1
jne originalcode
mov [ebx+464],#1000

originalcode:
popfd
mov eax,[ebx+00000464]

Tutorial-i386.exe+22988:
jmp score
nop

iscore:
dd 0
base_score:
dd 0

[DISABLE]
dealloc(newmem)
unregistersymbol(iscore)
unregistersymbol(base_score)
Tutorial-i386.exe+22988:
db 8B 83 64 04 00 00
[/code]

Help me please.
Back to top
View user's profile Send private message Send e-mail
daspamer
Grandmaster Cheater Supreme
Reputation: 54

Joined: 13 Sep 2011
Posts: 1588

PostPosted: Tue Apr 30, 2013 5:59 am    Post subject: Reply with quote

Code:
[ENABLE]
assert(Tutorial-i386.exe+22988,8B83????????3D????????752C8B83????????B201)
alloc(newmem,2048)
label(originalcode)
label(GoBack)
label(score)
label(iscore)
label(base_score)
registersymbol(iscore)
registersymbol(base_score)

//============
newmem:
//============

score:
pushfd
mov [base_score],ebx
cmp [iscore],1
jne originalcode
mov [ebx+464],#1000

originalcode:
popfd
mov eax,[ebx+00000464]
jmp GoBack

Tutorial-i386.exe+22988:
jmp score
nop
GoBack

iscore:
dd 0
base_score:
dd 0

[DISABLE]
dealloc(newmem)
unregistersymbol(iscore)
unregistersymbol(base_score)
Tutorial-i386.exe+22988:
db 8B 83 64 04 00 00

_________________
I'm rusty and getting older, help me re-learn lua.
Back to top
View user's profile Send private message Visit poster's website
Amami De Kaito
Expert Cheater
Reputation: 5

Joined: 06 Feb 2013
Posts: 110
Location: 3/44

PostPosted: Tue Apr 30, 2013 7:08 am    Post subject: Reply with quote

Flash hacker wrote:
Code:
[ENABLE]
assert(Tutorial-i386.exe+22988,8B83????????3D????????752C8B83????????B201)
alloc(newmem,2048)
label(originalcode)
label(GoBack)
label(score)
label(iscore)
label(base_score)
registersymbol(iscore)
registersymbol(base_score)

//============
newmem:
//============

score:
pushfd
mov [base_score],ebx
cmp [iscore],1
jne originalcode
mov [ebx+464],#1000

originalcode:
popfd
mov eax,[ebx+00000464]
jmp GoBack

Tutorial-i386.exe+22988:
jmp score
nop
GoBack

iscore:
dd 0
base_score:
dd 0

[DISABLE]
dealloc(newmem)
unregistersymbol(iscore)
unregistersymbol(base_score)
Tutorial-i386.exe+22988:
db 8B 83 64 04 00 00


Doesn't work.
Back to top
View user's profile Send private message Send e-mail
daspamer
Grandmaster Cheater Supreme
Reputation: 54

Joined: 13 Sep 2011
Posts: 1588

PostPosted: Tue Apr 30, 2013 8:13 am    Post subject: Reply with quote

Oh shit forgot to add the : after GoBack
You didn't set any return label
Code:
[ENABLE]
assert(Tutorial-i386.exe+22988,8B83????????3D????????752C8B83????????B201)
alloc(newmem,2048)
label(originalcode)
label(GoBack)
label(score)
label(iscore)
label(base_score)
registersymbol(iscore)
registersymbol(base_score)

//============
newmem:
//============

score:
pushfd
mov [base_score],ebx
cmp [iscore],1
jne originalcode
mov [ebx+464],#1000

originalcode:
popfd
mov eax,[ebx+00000464]
jmp GoBack

Tutorial-i386.exe+22988:
jmp score
nop
GoBack:

iscore:
dd 0
base_score:
dd 0

[DISABLE]
dealloc(newmem)
unregistersymbol(iscore)
unregistersymbol(base_score)
Tutorial-i386.exe+22988:
db 8B 83 64 04 00 00

_________________
I'm rusty and getting older, help me re-learn lua.
Back to top
View user's profile Send private message Visit poster's website
Amami De Kaito
Expert Cheater
Reputation: 5

Joined: 06 Feb 2013
Posts: 110
Location: 3/44

PostPosted: Tue Apr 30, 2013 8:48 am    Post subject: Reply with quote

Flash hacker wrote:
Oh shit forgot to add the : after GoBack
You didn't set any return label
Code:
[ENABLE]
assert(Tutorial-i386.exe+22988,8B83????????3D????????752C8B83????????B201)
alloc(newmem,2048)
label(originalcode)
label(GoBack)
label(score)
label(iscore)
label(base_score)
registersymbol(iscore)
registersymbol(base_score)

//============
newmem:
//============

score:
pushfd
mov [base_score],ebx
cmp [iscore],1
jne originalcode
mov [ebx+464],#1000

originalcode:
popfd
mov eax,[ebx+00000464]
jmp GoBack

Tutorial-i386.exe+22988:
jmp score
nop
GoBack:

iscore:
dd 0
base_score:
dd 0

[DISABLE]
dealloc(newmem)
unregistersymbol(iscore)
unregistersymbol(base_score)
Tutorial-i386.exe+22988:
db 8B 83 64 04 00 00


I enable cheat but value is decrease or wrong use script?
Back to top
View user's profile Send private message Send e-mail
daspamer
Grandmaster Cheater Supreme
Reputation: 54

Joined: 13 Sep 2011
Posts: 1588

PostPosted: Tue Apr 30, 2013 8:49 am    Post subject: Reply with quote

Code:
cmp [iscore],1
jne originalcode
...
iscore:
dd 0

You set iscore to 0.

_________________
I'm rusty and getting older, help me re-learn lua.
Back to top
View user's profile Send private message Visit poster's website
Amami De Kaito
Expert Cheater
Reputation: 5

Joined: 06 Feb 2013
Posts: 110
Location: 3/44

PostPosted: Tue Apr 30, 2013 9:19 am    Post subject: Reply with quote

Flash hacker wrote:
Code:
cmp [iscore],1
jne originalcode
...
iscore:
dd 0

You set iscore to 0.


It's doesn't work or other game. Crying or Very sad
Back to top
View user's profile Send private message Send e-mail
daspamer
Grandmaster Cheater Supreme
Reputation: 54

Joined: 13 Sep 2011
Posts: 1588

PostPosted: Tue Apr 30, 2013 9:20 am    Post subject: Reply with quote

Mate, go figure it by yourself.
_________________
I'm rusty and getting older, help me re-learn lua.
Back to top
View user's profile Send private message Visit poster's website
DaHacker878
Cheater
Reputation: 1

Joined: 02 Jun 2012
Posts: 41
Location: Canada

PostPosted: Sat May 18, 2013 11:39 pm    Post subject: Reply with quote

shinratensei wrote:
Flash hacker wrote:
Code:
cmp [iscore],1
jne originalcode
...
iscore:
dd 0

You set iscore to 0.


It's doesn't work or other game. Crying or Very sad


iscore:
dd 1 to enable or make a Second Script to Change iscore to 1 when enabled and 0 agian when disabled like this:

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat

iscore:
dd 1


[DISABLE]
//code from here till the end of the code will be used to disable the cheat
iscore:
dd 0

Good Luck I hope this helps.
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 Gamehacking 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