home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / GXY-INF.LHA / infos / train.s < prev    next >
Encoding:
Text File  |  1996-03-09  |  3.9 KB  |  86 lines

  1. yeah... welll i made 2 or 3 trainers myself.... dest part of making the
  2. trainer is coming between the programm itself... you have to rewrite a part of 
  3. the original game and make it jump into your own... there you can do whatever
  4. you want... but must be carefull which memory you can or can;t use... that's
  5. one of the hardest parts (i think)
  6.  
  7. hum yeah . the dude told me to put such sections in an addrs like this $100
  8. till $3c0 .... and about the prg.. yeah i guess what you mean and uderstand
  9. it. but well as i said never made.. no experiecne.. you know. hehehe and how
  10. are you going to search trainers using the action reply T! 1 .... and how are
  11. you searching for level jumps ?
  12.  
  13. well.. i usually use the action replay to scan memory for value's then play a
  14. little and try to find the correct address... then reboot, using more or less
  15. memory and see if the adress is absolute or not... (usually it isn't) and then 
  16. you'll have to find the section in whichs it belongs... calculate the relative 
  17. offset and try to use that.... then rewrite a interrupt inside the programm
  18. which allows you to change,edit,scan the level,life,energy counters....
  19.  
  20. well with this theory you are also able to make ingame keys am i right ?
  21.  
  22. yep... if all succeeds it can be done.... usualy only when the game has some
  23. sort of own keyboard handler... most games have them (even if the game itself
  24. doesn't use any keys)
  25.  
  26. .... well yeha but isn't it able to redo the IRQ $dff09a.. with othe rwords so 
  27. you can handle own stuff in it.. and then reset it after jumping back to the
  28. game so it will be processed once in 1/50 sec....
  29.  
  30. sometimes that's possible.... a thing i use it to write a relocatable
  31. trainer... that way i won't have to put it in the $100.w address because a lot 
  32. of (well written) games use this also... it's just enough room for a nice
  33. loader.... so they use it quiet a lot.... normaly (depends on the game type
  34. and programmers style) i try to make it memory independant... 
  35.  
  36. ... heh ewell yeah it was only a possibilitie of thousands heheh.. humm but
  37. what do you mean about reloctable when the code is mostly absolute.....
  38.  
  39. well , a lot of games (these days) check for extra memory and use it if
  40. possible... what i do is allocate a little bit more than the original programm 
  41. (hex edited) and place my programm just behind the original... that way i can
  42. use BSR and BRA and won't have to use JMP and JSP which take up more space and 
  43. are not so relocatable !! when i change the original interrupt i add those
  44. lines (which i needed to jump to my own programm) in my programm just before
  45. returning to the original routine... like this (something like this)
  46.  
  47. irq_original:  movem.l d0-a6,-(a7)
  48.                blabl               (taking up 4 bytes)
  49.                dlodlo              (taking up 6 bytes)
  50.                joepie              (taking up 2 bytes)
  51.                doei                (taking up 2 bytes)
  52.                movem.l (a7)+,d0-a6
  53.                rte
  54.  
  55. my_irq:        movem.l d0-a6,-(a7)
  56.                blabl
  57.                 dlodlo
  58.                bra.w  myroutine
  59.                movem.l (a7)+,d0-a6
  60.                rte
  61.  
  62. ...... rest of original programm
  63.  
  64. myroutine:      >> do my own stuff
  65.                joepie
  66.                doei                 (doing the stuff that is orignaly done)
  67.               bra.w   call of myroutine +2
  68.  
  69. that's one way of keeping a tight programm and still be able to run the
  70. original with addition of my own routines...
  71.  
  72. ... hummmm cool stuff.. so you must sometimes disposition the original code to 
  73. to bring a branch in it... and put that original code in your own routine...
  74. yeah iunderstand you.... cool stuff. aehm did you have one of youzr trainers a 
  75. t hand right now ?
  76.  
  77. nope... sorry i'm at work... all amiga stuff is at home... i believe i have a
  78. trainer for assasin somewhere... i'll have to look it up for ya
  79.  
  80.  
  81. ... oki dude aehm uupposss sorry i must leave you right now.. well i chat
  82. later with you oki
  83.  
  84. o.k. or otherwise saturday....
  85.  
  86.