| View previous topic :: View next topic |
| Author |
Message |
bachou Expert Cheater
Reputation: 0
Joined: 02 Feb 2015 Posts: 136
|
Posted: Mon Mar 21, 2016 6:51 pm Post subject: how can i create scan script like shinkansen's tables ? |
|
|
| how can i create scan script like shinkansen's tables ? it's really convenient than what i have been doing : scan everytime i play the game... is the script a pointer ?
|
|
| Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Mon Mar 21, 2016 8:11 pm Post subject: |
|
|
What scan script ? Can you post the code so we get an idea of what you are talking about
_________________
|
|
| Back to top |
|
 |
SunBeam I post too much
Reputation: 65
Joined: 25 Feb 2005 Posts: 4023 Location: Romania
|
Posted: Mon Mar 21, 2016 8:29 pm Post subject: |
|
|
I think he's talking about "aobscan", "aobscanmodule" OR some custom script he's done for a certain game, where a function probably grabs all the things he resolves in the game
BR,
Sun
|
|
| Back to top |
|
 |
bachou Expert Cheater
Reputation: 0
Joined: 02 Feb 2015 Posts: 136
|
Posted: Tue Mar 22, 2016 3:03 am Post subject: |
|
|
some thing like this
[ENABLE]
registersymbol(partystats_basepointer)
registersymbol(partystats_update_enable)
registersymbol(partystats_set_enable)
registersymbol(partystats_creditset_enable)
registersymbol(partystats_exdriveset_enable)
alloc(partystats_basepointer, 4)
alloc(partystats_update_enable, 4)
alloc(partystats_set_enable, 4)
alloc(partystats_creditset_enable, 4)
alloc(partystats_exdriveset_enable, 4)
[DISABLE]
unregistersymbol(partystats_basepointer)
unregistersymbol(partystats_update_enable)
unregistersymbol(partystats_set_enable)
unregistersymbol(partystats_creditset_enable)
unregistersymbol(partystats_exdriveset_enable)
dealloc(partystats_basepointer)
dealloc(partystats_update_enable)
dealloc(partystats_set_enable)
dealloc(partystats_creditset_enable)
dealloc(partystats_exdriveset_enable)
and
[ENABLE]
label(partystats_savedAOB)
label(partystats_returnhere)
label(partystats_originalcode)
label(partystats_exit)
label(partystats_update_exit)
label(partystats_set_exit)
label(partystatscredit_set_exit)
label(partystatsexdrive_set_exit)
registersymbol(partystats_savedAOB)
aobscan(partystats_searchedAOB, 8B B0 B0 C7 00 00 85 F6)
alloc(partystats_newmem, 2048)
partystats_newmem:
cmp dword ptr [partystats_update_enable], #0
je partystats_update_exit
mov [partystats_basepointer], eax
partystats_update_exit:
cmp dword ptr [partystats_set_enable], #0
je partystats_set_exit
partystats_set_exit:
cmp dword ptr [partystats_creditset_enable], #0
je partystatscredit_set_exit
mov [eax+f6b0], #99999999
partystatscredit_set_exit:
cmp dword ptr [partystats_exdriveset_enable], #0
je partystatsexdrive_set_exit
partystatsexdrive_set_exit:
partystats_originalcode:
db 8B B0 B0 C7 00 00
//mov esi,[eax+0000C7B0]
partystats_exit:
jmp partystats_returnhere
partystats_searchedAOB:
partystats_savedAOB:
jmp partystats_newmem
nop
partystats_returnhere:
[DISABLE]
partystats_savedAOB:
db 8B B0 B0 C7 00 00
//mov esi,[eax+0000C7B0]
unregistersymbol(partystats_savedAOB)
dealloc(partystats_newmem)
is there a tool to write these things down ? or we have to write them...
|
|
| Back to top |
|
 |
unknown_k Expert Cheater
Reputation: 5
Joined: 24 May 2011 Posts: 211
|
Posted: Wed Mar 23, 2016 1:23 am Post subject: |
|
|
| bachou wrote: | ...
is there a tool to write these things down ? or we have to write them... |
latter.
if there's such a tool it's ce + your brain.
|
|
| Back to top |
|
 |
bachou Expert Cheater
Reputation: 0
Joined: 02 Feb 2015 Posts: 136
|
Posted: Wed Apr 27, 2016 3:37 am Post subject: |
|
|
i decided to give up and being a leecher...IT is complicated, i cant even pass the pointer tutorial
|
|
| Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Wed Apr 27, 2016 4:26 am Post subject: |
|
|
| bachou wrote: | i decided to give up and being a leecher...IT is complicated, i cant even pass the pointer tutorial  |
It is not for everyone just like medicine isn't for everyone or being creative.
_________________
|
|
| Back to top |
|
 |
Cake-san Grandmaster Cheater
Reputation: 8
Joined: 18 Dec 2014 Posts: 541 Location: Semenanjung
|
|
| Back to top |
|
 |
|