home *** CD-ROM | disk | FTP | other *** search
- yeah... welll i made 2 or 3 trainers myself.... dest part of making the
- trainer is coming between the programm itself... you have to rewrite a part of
- the original game and make it jump into your own... there you can do whatever
- you want... but must be carefull which memory you can or can;t use... that's
- one of the hardest parts (i think)
-
- hum yeah . the dude told me to put such sections in an addrs like this $100
- till $3c0 .... and about the prg.. yeah i guess what you mean and uderstand
- it. but well as i said never made.. no experiecne.. you know. hehehe and how
- are you going to search trainers using the action reply T! 1 .... and how are
- you searching for level jumps ?
-
- well.. i usually use the action replay to scan memory for value's then play a
- little and try to find the correct address... then reboot, using more or less
- memory and see if the adress is absolute or not... (usually it isn't) and then
- you'll have to find the section in whichs it belongs... calculate the relative
- offset and try to use that.... then rewrite a interrupt inside the programm
- which allows you to change,edit,scan the level,life,energy counters....
-
- well with this theory you are also able to make ingame keys am i right ?
-
- yep... if all succeeds it can be done.... usualy only when the game has some
- sort of own keyboard handler... most games have them (even if the game itself
- doesn't use any keys)
-
- .... well yeha but isn't it able to redo the IRQ $dff09a.. with othe rwords so
- you can handle own stuff in it.. and then reset it after jumping back to the
- game so it will be processed once in 1/50 sec....
-
- sometimes that's possible.... a thing i use it to write a relocatable
- trainer... that way i won't have to put it in the $100.w address because a lot
- of (well written) games use this also... it's just enough room for a nice
- loader.... so they use it quiet a lot.... normaly (depends on the game type
- and programmers style) i try to make it memory independant...
-
- ... heh ewell yeah it was only a possibilitie of thousands heheh.. humm but
- what do you mean about reloctable when the code is mostly absolute.....
-
- well , a lot of games (these days) check for extra memory and use it if
- possible... what i do is allocate a little bit more than the original programm
- (hex edited) and place my programm just behind the original... that way i can
- use BSR and BRA and won't have to use JMP and JSP which take up more space and
- are not so relocatable !! when i change the original interrupt i add those
- lines (which i needed to jump to my own programm) in my programm just before
- returning to the original routine... like this (something like this)
-
- irq_original: movem.l d0-a6,-(a7)
- blabl (taking up 4 bytes)
- dlodlo (taking up 6 bytes)
- joepie (taking up 2 bytes)
- doei (taking up 2 bytes)
- movem.l (a7)+,d0-a6
- rte
-
- my_irq: movem.l d0-a6,-(a7)
- blabl
- dlodlo
- bra.w myroutine
- movem.l (a7)+,d0-a6
- rte
-
- ...... rest of original programm
-
- myroutine: >> do my own stuff
- joepie
- doei (doing the stuff that is orignaly done)
- bra.w call of myroutine +2
-
- that's one way of keeping a tight programm and still be able to run the
- original with addition of my own routines...
-
- ... hummmm cool stuff.. so you must sometimes disposition the original code to
- to bring a branch in it... and put that original code in your own routine...
- yeah iunderstand you.... cool stuff. aehm did you have one of youzr trainers a
- t hand right now ?
-
- nope... sorry i'm at work... all amiga stuff is at home... i believe i have a
- trainer for assasin somewhere... i'll have to look it up for ya
-
-
- ... oki dude aehm uupposss sorry i must leave you right now.. well i chat
- later with you oki
-
- o.k. or otherwise saturday....
-
-