Anarchist420 How do I cheat?
  Reputation: 0
  Joined: 04 Dec 2009 Posts: 2
 
  | 
		
			
				 Posted: Wed Sep 05, 2012 8:34 pm    Post subject: [Help] Need some help with this... | 
				       | 
			 
			
				
  | 
			 
			
				First I hope this is the right place for this.
 
 
Second, I'm hacking a flash game and trying to make an AAScript so I don't have to search for and change the AOBs manually every time I want to play this game.
 
 
Here is the AAScript: 	  | Code: | 	 		  // Avoid communication errors that might be caused by hacks
 
aobscan(_aob1,d0 30 5d ?? ?? 5d ?? ?? 60 ?? ?? 66 ?? ?? 27)
 
_aob1:
 
db 47
 
aobscan(_aob2,d0 30 5d ?? ?? 5d ?? ?? 60 ?? ?? 66 ?? ?? 27)
 
_aob2:
 
db 47
 
 
// Unlock Admin hacks
 
aobscan(_aob3,2a 12 05 00 00 29 60 ?? 3b 76 12)
 
_aob3:
 
db 10 06 00 00
 
aobscan(_aob4,2a 12 05 00 00 29 60 ?? 3b 76 12)
 
_aob4:
 
db 10 06 00 00
 
aobscan(_aob5,2a 12 05 00 00 29 60 ?? 3b 76 12)
 
_aob5:
 
db 10 06 00 00
 
aobscan(_aob6,2a 12 05 00 00 29 60 ?? 3b 76 12)
 
_aob6:
 
db 10 06 00 00
 
aobscan(_aob7,2a 12 05 00 00 29 60 ?? 3b 76 12)
 
_aob7:
 
db 10 06 00 00
 
 
// Remove Reporting Admin Hack Usage
 
aobscan(_aob8,b0 00 00 5d ?? ?? 2c)
 
_aob8:
 
db b0 00 00 10 06 00 00
 
 
// Increase Range Of Admin F1 Hack
 
aobscan(_aob9,66 ?? ?? 66 ?? ?? 24 05 46)
 
_aob9+7:
 
db 7f 46
 
 
// Increase Damage Of Admin F1 Hack (15000 instead of 999)
 
aobscan(_aob10,d3 25 e7 07)
 
_aob10:
 
db d3 25 98 75
 
 
// Instant Respawns For Dynamic Spawns
 
aobscan(_aob11,d2 d2 66 ?? ?? 61 ?? ?? 10)
 
_aob11:
 
db d2 25 f4 03 73
 
 
// Increase Loot Pickup Range
 
aobscan(_aob12,2f ?? 46 ?? ?? 02 12 12 00 00)
 
_aob12:
 
db 24 7f
 
 
// Instant Corpse Decay
 
aobscan(_aob13,d0 30 d0 66 ?? ?? 24 00 0d 15)
 
_aob13:
 
db d0 30 10 06 00 00
 
 
// Instant Death Animation
 
aobscan(_aob14,d0 66 ?? ?? 24 00 0d 54)
 
_aob14:
 
db 10 06 00 00 | 	  I'm probably wrong on a few things...
 
 
Two AOBs have more then one result...
 
Several AOBs MUST be changed from their long values to much shorter ones.
 
 
d0 30 5d ?? ?? 5d ?? ?? 60 ?? ?? 66 ?? ?? 27 has two results and both must be changed to 47.
 
Problem is it only changes the first found value d0 to 47. I need it to replace the whole found value with 47, twice.
 
 
2a 12 05 00 00 29 60 ?? 3b 76 12 has five results and all must be changed to 10 06 00 00.
 
Again, same problem as above, it is not replacing the whole value.
 
 
How the hell do I get this script to do what I need it to? lol
 | 
			 
		  |