luxdav
Active member
- Joined
 - Sep 17, 2014
 
- Messages
 - 45
 
- Reaction score
 - 5
 
Hello out there!
I wrote an AutoHotKey Script that basically works as a Trainer on every SAMP Server. The current Cheats included are written for R1. The cold is a half year old. I wrote most from scratch.
The Trainer injects some ASM Code into the game. This works on RoleplayServers, too. Even with AntiCheat. You can't get banned by a system.
An Admin has to ban you. If you are using it wisely you won't get banned (e.g. don't use obvious cheats.)
I wrote a method called writeByteCode(handle, address, (String) byteCode) in MemoryFunctions.ahk that injecteds a sequence of Opcodes as Hex in the game (e.g.: writeByteCode(gtaHandle, 0x1337, "909090"), this writes 3 nops to 0x1337).
Then I wrote a function called executeCheat(name) that toggles a cheat from the cheatlist (cheats[] in Main.ahk).
The structur of cheats[] is an Object with name, address, newInstruction, origInstruction and description.
With this structure you can easily add new cheats.
I also added my Cheat Engine test table.
			
			I wrote an AutoHotKey Script that basically works as a Trainer on every SAMP Server. The current Cheats included are written for R1. The cold is a half year old. I wrote most from scratch.
The Trainer injects some ASM Code into the game. This works on RoleplayServers, too. Even with AntiCheat. You can't get banned by a system.
An Admin has to ban you. If you are using it wisely you won't get banned (e.g. don't use obvious cheats.)
- Search a player in streaming range
 - Set the weather to default
 - Toggle NameTagHack
 - Toggle NoRecoil
 - Toggle Infinite Stamina
 - Toggle Unlimited Ammo
 - Toggle TargetInfo
 - Teleport to a Checkpoint
 - Teleport to the player next to you
 - Teleport to a streamed UserID
 - Teleport to coordinates
 - Save a location
 - Teleport to a saved location
 - Slap yourself in the air
 - Toggle FPSLimiter
 - Enable AntiExplode (Cars can't explode)
 - List all your saved Teleports
 - Toggle an Overlay that shows all players in StreamingRange with location and HP
 - Toggle AntiBikeFall (You don't fall off a bike when hitting a wall)
 - Jump a little bit forward
 - Clip some meters forward
 - Toggle AntiCarEject (You can't get ejected from a car)
 - Toggle AntiFreeze (You can't get freezed anymore)
 - Start every engine. (The engine of every car is already started)
 - Toggle Blur Effect
 - Toggle Animations
 - Teleport to Map (ESC->MAP->MOUSEOVER->Press Hotkey)
 - Set the DL of your car
 - Spawn a car that is not synched
 - Change your Skin while playin'
 - Get a speedboost
 - Stop your car
 
I wrote a method called writeByteCode(handle, address, (String) byteCode) in MemoryFunctions.ahk that injecteds a sequence of Opcodes as Hex in the game (e.g.: writeByteCode(gtaHandle, 0x1337, "909090"), this writes 3 nops to 0x1337).
Then I wrote a function called executeCheat(name) that toggles a cheat from the cheatlist (cheats[] in Main.ahk).
The structur of cheats[] is an Object with name, address, newInstruction, origInstruction and description.
With this structure you can easily add new cheats.
I also added my Cheat Engine test table.