By Jake - Opiumtest.blogspot.com
Finally decided to stop being lazy and release a SAB trainer.
EDIT: Removed all cheating messages when used
no walls - self-explanatory
god mode - self-explanatory
teleport - quickly spawn exactly at targets location by choosing 1-3 keys on keyboard, can also hold down either key and follow them but be cautious of spawning to different players too quickly/rapid
kick cheat - self-explanatory(patched?)
spam - sends very fast 5 line spam of custom messages while left mouse is down, useful against other cheaters or against those with high ping
weapons - choose weapon using function keys on keyboard F1-F12 and num 0
invulnerable mode - a type of god mode with option to turn on/off using ESC key on keyboard
no ads - self-explanatory
anti-boot/updates - must be clicked in order for cheats to work/enabled and prevents being booted from game, checks for update
aimbot - targets closest enemy and has an accuracy problem while moving but very minimal, 100% accuracy while not moving at all, will not aim at dead players, USE ARROW KEYS for better accuracy
suicide - this will cause you to respawn with full health without a kill recorded
MOD scan - searches for 5 out of so many mods every few seconds, will give option to exit MOD scan/continue playing or go to title screen when a MOD is found
http://uploadingit.com/d/WQTSIASEDZ6RQPSW
Monday, December 28, 2009
Tutorial #1 How To Make Trainer In VB6
BY BLADER
How To...
[FLASH BASED]
1. Use the SetVariable Function
2. Use the SetVariable Function With User Defined Value
3. Use the GetVariable Function
4. Use the GetVariable Function With A Timer
5. Use SetVariable Function to Freeze Variables
6. Use SetVariable Function to Freeze Variables With On / Off
7. Use the SetVariable Function With User Defined Variable and Value
8. Use the GetVariable Function With User Defined Variable
9. Use the GetVariable Function With User Defined Variable With Timer
10. Use the SetVariable Function with a Combo Box
11. Use the SetVariable Function With Input Box
[GENERAL]
1. Make a Message Box
2. Unload All Forms Before Closing
3. Open a Form
4. Make a Menu
5. Change Form Startup Position
[SWF BASED]
1. Load a SWF From a Website
2. Load a SWF ontop of Original SWF
3. Load a SWF From Application Path
4. Load Base, Movie and FlashVars
5. Load User Defined Property Values
6. Force Loading
7. Reset the Current SWF
[DICTIONARY]
1. VB Commonly Used Words
1. How To Use the SetVariable Function
Firstly, make a command button, then double click it. It should lead into a code window which looks like this:
In the space between the two lines, add this:
Replace "variable" with the variable you'd like to edit, and value with the value you'd like to assign to that certain variable.
2. How To Use the SetVariable Function With User Defined Value
If you want the user to enter his/her own value for the variable, instead of preseting it for them, you need to add a button and a text box. Now enter the button's code by double clicking it. All you have to change is the value to the text property of Text1. If you change them, it would look like this:
You still have to replace the "variable" with the variable you found, but now you don't have to worry about the value since the person using your trainer can set it themselves. You should get into the habit of doing this, because it gives the user more control of what they want, because when you used a preset value, they might not like it to be that high or low, etc. This way, it will suit their needs and wants.
3. How To Use the GetVariable Function
What the GetVariable function does is pretty self explanatory, it finds the value of a variable. You need to make a command button and a text box.
Double click the command button, then add this code in the space between the 2 lines:
Replace variable with the variable you'd like to get the value of. This code simply tells it to get the value of what's inside the brackets (the variable) and write it in text1.
4. How To Use the GetVariable Function With A Timer
This is still using the GetVariable function like in my previous one, except this time it repeatedly gets the variable.
Set up a text box and a timer. Click the properties window, and change the interval of the timer from 0 to 1.
Now double click the timer, it should still look at the same the command button code, except some of the events and names have changed. Now enter this code:
Replace "variable" with the variable you'd like to get the value of.
This code still gets the variable, except it does it every milisecond, so if the value has changed, it will record the new value in the text box.
5. How To Use SetVariable Function to Freeze Variables
Freezing a variable can be useful when you want to freeze the variable for health, money, etc. This way, the value will never change, and it's easier than the person setting the variable to a higher number, just to survive and such.
You will need a button and a timer for this. Click the timer, in the properties window to the right, set the interval to 1, and enabled to false. Go into the button code and add this:
This turns the timer on when pressed. Now go into the timer, and add your setvariable code:
Replace it with your variable / value and your done! Now, you can apply your knowledge. You could take your knowledge on how to use a text box, and combine it with how to freeze a variable. To do this, you would replace the "value" with your text box name. It will look something like this:
The same as How To # 2.
6. How To Use SetVariable Function to Freeze Variables With On / Off
You might be wondering, what if the person wants to disable the hack?
To disable, it's a little more complicated, because you have to use an 'if' statement.
Firstly, set up your button and timer the same as above, and enter your timer code, but for your button, use this instead:
What this does is, if the user presses the button, and Timer1 is off, it turns it on. If the user clicks it again, and Timer1 is not disabled (it's enabled), it turns it off.
If you wish to change the caption, you would have to add 2 more lines to change the command button's caption:
Change the caption to fit your needs. If you decide to use the caption, which you should, the caption for the command button should be the caption when it's off, so edit that in the properties window.
7. How To Use the SetVariable Function With User Defined Variable and Value
This is usually used when you want the user to enter the variable and value, like a UFT.
It's the same concept as the one with the user defined value, what you do is create 2 text boxes, and 1 command button.
In the command button, you replace BOTH of the placeholders, it would look like this now: (Text1 = Variable, Text2 = Value)
Never use this in a trainer, it's pretty much pointless.
8. How To Use the GetVariable Function With User Defined Variable
Same as above, except this will get the value, text2 will be the output/value, text1 will be the input/variable.
Set up the right controls which would be 2 text boxes, and a button. In the button clicking event, add this:
You must add the "On Error Resume Next" because if the user enters the wrong variable, it will get an error. "On Error Resume Next" means, when there is a error, just continue.
9. How To Use the GetVariable Function With User Defined Variable With Timer
This is the same as above, but it's constantly getting the variable. This concept is the same as How To # 4, so if you get that one, you wouldn't have troubles with this one. This is usually used as a variable 'tester' in a UFT, so I will explain some extra methods you could use with the error handler.
You will only need a timer, and 2 text boxes. Set timer interval to 1. Add this to the code of the timer:
It's the same as above. Now, if you want to display a message such as "Doesn't Exist" when the variable is not found, one method is to add an error handler, so this would be the new code:
When there's an error, it goes to 'errorhandler'. 'errorhandler' makes it display "Doesn't Exist" in Text2. It still does the same thing, except it tells the user that it doesn't exist, because that's the whole point of testing variables right?
10. How To Use the SetVariable Function with a Combo Box
If you wish to use a combo box to set groups of variables such as stat hacks, then firstly make a combo box, and a button. If you want the user to set the value, you may add a text box.
Now, go to your combo box, and in the list property, enter your items on each line.
I'm going to use the items "Hack1", and "Hack2" for this How To, you can change it to fit what you want. Now, go into your button code, and add this:
If the text of combo1 is Hack1, then set the variable for that hack, and if it's on Hack2, set the other one. If you want to use a text box in there, replace the values:
This is used when you don't want to have a button for each variable like set strength, magic, speed, etc. I only used 2 items in mines, you can add as many as you like, just keep repeating the code.
11. Use the SetVariable Function With Input Box
An input box is a message with a textbox that pops up when it's called. To use it with the set variable function, add this to your code:
Replace the variable, message and title with whatever you want.
Now when the event is triggered, a message prompts the user to enter a value, and it will set it once they have entered it.
1. How To Make a Message Box
If you want to make a message box, the code is fairly simple. Put this code where you want the message box to show, such as in a button click event.
If you wish to make your own title, use this:
The 'vbOkOnly' is the type of message box it's going to be, you can change it from the list if you want, vbOkOnly is the default message box.
2. How To Unload All Forms Before Closing
If you have more than one form open, such as a hack menu, and you want to close them all when the person closes the main form, go to your main form (Form1), go into the code, and type this in a blank spot:
It's better to unload each form, because using 'End' may cause problems in the memory.
3. How To Open a Form
If you want to open another form, let's say a hack menu, firstly go click the 'Project' menu at the top of your screen, then click 'Add Form...'.
Now, you can add this code to open it:
Replace Form2 with your form you want to open's name.
4. How To Make a Menu
Ever seen those programs which have the menu bar at the top such as 'File', 'Edit', 'View', etc.?
To make one just like those, right-click a blank spot on your form, and then go to 'Menu Editor'.
You can edit the menu from there. To add items to the menu, like a dropdown, you have to press the right arrow, it makes the current menu item drop down from the menu above it.
5. How To Change Form Startup Position
If you ever made a program with lots of forms, you might notice that they all pile up at one location, this is the default location that windows set.
If you want to change it, you can move your forms around in the window to the bottom right which is called 'Form Layout'. Drag that window out for a larger view.
There is also a property called 'StartUpPosition' and you can set it to be in the center and such.
1. How To Load a SWF From a Website
If you wish to load a swf from website, first you need to get the .swf link. After you have obtained it, use this code to load it:
2. How To Load a SWF ontop of Original SWF
If you want to load something such as an SWF hack for games like AQ, DF, and MQ, you must load it higher than layer 0. To do this, just increase the layer to 1, in the LoadMovie function:
3. How To Load a SWF From Application Path
Many of the AQ, Df and MQ trainers store their .SWF files in a folder where the .exe is placed such as "\SWF\hack.swf". To gain access and load a swf from this directory, simply use the property 'Path' from the object 'App':
4. How To Load Base, Movie and FlashVars
The ShockwaveFlash component has 3 properties that are useful for loading, base, movie, and flashvars. To load these, simply use their properties to load what you want:
5. How To Load User Defined Property Values
If you want the user to load a swf path, base, flashvars, layer, etc. you use a text box and make what they input fill in the value for these properties:
You can also use the LoadMovie function to load on seperate layers:
6. Force Loading
Sometimes, certain .swf files don't play when the application is started, to fix this error, go into your form loading event, and enter this:
Or
This tells the shockwave flash component to play the .swf when the form is loaded.
7. Reset the Current SWF
Reseting the current .swf is useful when the user wants to reset all cheats he/she has activated, this basically clears out the cheats and starts a new game. Put this in your event when triggered:
Replace the "Url Here" with the .swf url you are using.
What this does is make the component load nothing, so it replaces the original .swf, then it loads the game/file again.
1. VB Commonly Used Words
I might refer to these in some of my How To's, these are just the basic ones you should get to know:
Form - This is what your window is called
Control - These are the controls that you use such as labels, buttons, pictures, timers, and so on
EXE - The executable file
Project - The whole VB work, much like a normal project
Components - You can add these from 'Project > Components...', they are extra things you can add, examples would be an internet control, shockwave flash component, windows media player component, and much more
Properties - You can find these in the property windows to the side, they are basically the properties of the current control
Event - These are the things that are triggered when the user has done something such as clicking a button
======================================================
I'll be updating this for more How To's later on. Please report any non-working code, because I didn't have VB out when I did this, so I might have made some mistakes.
Credits: Blader(Me), and my hands for typing this all out!
How To...
[FLASH BASED]
1. Use the SetVariable Function
2. Use the SetVariable Function With User Defined Value
3. Use the GetVariable Function
4. Use the GetVariable Function With A Timer
5. Use SetVariable Function to Freeze Variables
6. Use SetVariable Function to Freeze Variables With On / Off
7. Use the SetVariable Function With User Defined Variable and Value
8. Use the GetVariable Function With User Defined Variable
9. Use the GetVariable Function With User Defined Variable With Timer
10. Use the SetVariable Function with a Combo Box
11. Use the SetVariable Function With Input Box
[GENERAL]
1. Make a Message Box
2. Unload All Forms Before Closing
3. Open a Form
4. Make a Menu
5. Change Form Startup Position
[SWF BASED]
1. Load a SWF From a Website
2. Load a SWF ontop of Original SWF
3. Load a SWF From Application Path
4. Load Base, Movie and FlashVars
5. Load User Defined Property Values
6. Force Loading
7. Reset the Current SWF
[DICTIONARY]
1. VB Commonly Used Words
1. How To Use the SetVariable Function
Firstly, make a command button, then double click it. It should lead into a code window which looks like this:
In the space between the two lines, add this:
| Code: |
| Call ShockwaveFlash1.SetVariable("variable", value) |
Replace "variable" with the variable you'd like to edit, and value with the value you'd like to assign to that certain variable.
2. How To Use the SetVariable Function With User Defined Value
If you want the user to enter his/her own value for the variable, instead of preseting it for them, you need to add a button and a text box. Now enter the button's code by double clicking it. All you have to change is the value to the text property of Text1. If you change them, it would look like this:
| Code: |
| Call ShockwaveFlash1.SetVariable("variable", Text1.Text) |
You still have to replace the "variable" with the variable you found, but now you don't have to worry about the value since the person using your trainer can set it themselves. You should get into the habit of doing this, because it gives the user more control of what they want, because when you used a preset value, they might not like it to be that high or low, etc. This way, it will suit their needs and wants.
3. How To Use the GetVariable Function
What the GetVariable function does is pretty self explanatory, it finds the value of a variable. You need to make a command button and a text box.
Double click the command button, then add this code in the space between the 2 lines:
| Code: |
| Text1.Text = ShockwaveFlash1.GetVariable("variable") |
Replace variable with the variable you'd like to get the value of. This code simply tells it to get the value of what's inside the brackets (the variable) and write it in text1.
4. How To Use the GetVariable Function With A Timer
This is still using the GetVariable function like in my previous one, except this time it repeatedly gets the variable.
Set up a text box and a timer. Click the properties window, and change the interval of the timer from 0 to 1.
Now double click the timer, it should still look at the same the command button code, except some of the events and names have changed. Now enter this code:
| Code: |
| Text1.Text = ShockwaveFlash1.GetVariable("variable") |
Replace "variable" with the variable you'd like to get the value of.
This code still gets the variable, except it does it every milisecond, so if the value has changed, it will record the new value in the text box.
5. How To Use SetVariable Function to Freeze Variables
Freezing a variable can be useful when you want to freeze the variable for health, money, etc. This way, the value will never change, and it's easier than the person setting the variable to a higher number, just to survive and such.
You will need a button and a timer for this. Click the timer, in the properties window to the right, set the interval to 1, and enabled to false. Go into the button code and add this:
| Code: |
| Timer1.Enabled = True |
This turns the timer on when pressed. Now go into the timer, and add your setvariable code:
| Code: |
| Call ShockwaveFlash1.SetVariable("variable", value) |
Replace it with your variable / value and your done! Now, you can apply your knowledge. You could take your knowledge on how to use a text box, and combine it with how to freeze a variable. To do this, you would replace the "value" with your text box name. It will look something like this:
| Code: |
| Call ShockwaveFlash1.SetVariable("variable", Text1.Text) |
The same as How To # 2.
6. How To Use SetVariable Function to Freeze Variables With On / Off
You might be wondering, what if the person wants to disable the hack?
To disable, it's a little more complicated, because you have to use an 'if' statement.
Firstly, set up your button and timer the same as above, and enter your timer code, but for your button, use this instead:
| Code: |
| If Timer1.Enabled = False Then Timer1.Enabled = True Else Timer1.Enabled = False End If |
What this does is, if the user presses the button, and Timer1 is off, it turns it on. If the user clicks it again, and Timer1 is not disabled (it's enabled), it turns it off.
If you wish to change the caption, you would have to add 2 more lines to change the command button's caption:
| Code: |
| If Timer1.Enabled = False Then Timer1.Enabled = True Command1.Caption = "On" Else Timer1.Enabled = False Command1.Caption = "Off" End If |
Change the caption to fit your needs. If you decide to use the caption, which you should, the caption for the command button should be the caption when it's off, so edit that in the properties window.
7. How To Use the SetVariable Function With User Defined Variable and Value
This is usually used when you want the user to enter the variable and value, like a UFT.
It's the same concept as the one with the user defined value, what you do is create 2 text boxes, and 1 command button.
In the command button, you replace BOTH of the placeholders, it would look like this now: (Text1 = Variable, Text2 = Value)
| Code: |
| Call ShockwaveFlash1.SetVariable (Text1.Text, Text2.Text) |
Never use this in a trainer, it's pretty much pointless.
8. How To Use the GetVariable Function With User Defined Variable
Same as above, except this will get the value, text2 will be the output/value, text1 will be the input/variable.
Set up the right controls which would be 2 text boxes, and a button. In the button clicking event, add this:
| Code: |
| On Error Resume Next Text2.Text = ShockwaveFlash1.GetVariable(Text1.Text) |
You must add the "On Error Resume Next" because if the user enters the wrong variable, it will get an error. "On Error Resume Next" means, when there is a error, just continue.
9. How To Use the GetVariable Function With User Defined Variable With Timer
This is the same as above, but it's constantly getting the variable. This concept is the same as How To # 4, so if you get that one, you wouldn't have troubles with this one. This is usually used as a variable 'tester' in a UFT, so I will explain some extra methods you could use with the error handler.
You will only need a timer, and 2 text boxes. Set timer interval to 1. Add this to the code of the timer:
| Code: |
| On Error Resume Next Text2.Text = ShockwaveFlash1.GetVariable(Text1.Text) |
It's the same as above. Now, if you want to display a message such as "Doesn't Exist" when the variable is not found, one method is to add an error handler, so this would be the new code:
| Code: |
| On Error GoTo errorhandler Text2.Text = ShockwaveFlash1.GetVariable(Text1.Text) Exit Sub errorhandler: Text2.Text = "Doesn't Exist" |
When there's an error, it goes to 'errorhandler'. 'errorhandler' makes it display "Doesn't Exist" in Text2. It still does the same thing, except it tells the user that it doesn't exist, because that's the whole point of testing variables right?
10. How To Use the SetVariable Function with a Combo Box
If you wish to use a combo box to set groups of variables such as stat hacks, then firstly make a combo box, and a button. If you want the user to set the value, you may add a text box.
Now, go to your combo box, and in the list property, enter your items on each line.
I'm going to use the items "Hack1", and "Hack2" for this How To, you can change it to fit what you want. Now, go into your button code, and add this:
| Code: |
| If Combo1.Text = "Hack1" Then Call ShockwaveFlash1.SetVariable("Hack1_Variable", Hack1_Value) End If If Combo1.Text = "Hack2" then Call ShockwaveFlash1.SetVariable("Hack2_Variable", Hack2_Value) End If |
If the text of combo1 is Hack1, then set the variable for that hack, and if it's on Hack2, set the other one. If you want to use a text box in there, replace the values:
| Code: |
| If Combo1.Text = "Hack1" Then Call ShockwaveFlash1.SetVariable("Hack1_Variable", Text1.Text) End If If Combo1.Text = "Hack2" then Call ShockwaveFlash1.SetVariable("Hack2_Variable", Text2.Text) End If |
This is used when you don't want to have a button for each variable like set strength, magic, speed, etc. I only used 2 items in mines, you can add as many as you like, just keep repeating the code.
11. Use the SetVariable Function With Input Box
An input box is a message with a textbox that pops up when it's called. To use it with the set variable function, add this to your code:
| Code: |
| Call ShockwaveFlash1.SetVariable("Variable", InputBox("Your Message", "Your Title")) |
Replace the variable, message and title with whatever you want.
Now when the event is triggered, a message prompts the user to enter a value, and it will set it once they have entered it.
1. How To Make a Message Box
If you want to make a message box, the code is fairly simple. Put this code where you want the message box to show, such as in a button click event.
| Code: |
| MsgBox "Message Here" |
If you wish to make your own title, use this:
| Code: |
| MsgBox "Message Here", vbOkOnly, "Title" |
The 'vbOkOnly' is the type of message box it's going to be, you can change it from the list if you want, vbOkOnly is the default message box.
2. How To Unload All Forms Before Closing
If you have more than one form open, such as a hack menu, and you want to close them all when the person closes the main form, go to your main form (Form1), go into the code, and type this in a blank spot:
| Code: |
| Private Sub Form_Unload() Unload Form2 Unload Form3 Unload Form4 Unload Me End Sub |
It's better to unload each form, because using 'End' may cause problems in the memory.
3. How To Open a Form
If you want to open another form, let's say a hack menu, firstly go click the 'Project' menu at the top of your screen, then click 'Add Form...'.
Now, you can add this code to open it:
| Code: |
| Form2.Show |
Replace Form2 with your form you want to open's name.
4. How To Make a Menu
Ever seen those programs which have the menu bar at the top such as 'File', 'Edit', 'View', etc.?
To make one just like those, right-click a blank spot on your form, and then go to 'Menu Editor'.
You can edit the menu from there. To add items to the menu, like a dropdown, you have to press the right arrow, it makes the current menu item drop down from the menu above it.
5. How To Change Form Startup Position
If you ever made a program with lots of forms, you might notice that they all pile up at one location, this is the default location that windows set.
If you want to change it, you can move your forms around in the window to the bottom right which is called 'Form Layout'. Drag that window out for a larger view.
There is also a property called 'StartUpPosition' and you can set it to be in the center and such.
1. How To Load a SWF From a Website
If you wish to load a swf from website, first you need to get the .swf link. After you have obtained it, use this code to load it:
| Code: |
| ShockwaveFlash1.LoadMovie 0, "http://whatever.com/whatever.swf" |
2. How To Load a SWF ontop of Original SWF
If you want to load something such as an SWF hack for games like AQ, DF, and MQ, you must load it higher than layer 0. To do this, just increase the layer to 1, in the LoadMovie function:
| Code: |
| ShockwaveFlash1.LoadMovie 1, "swf link here" |
3. How To Load a SWF From Application Path
Many of the AQ, Df and MQ trainers store their .SWF files in a folder where the .exe is placed such as "\SWF\hack.swf". To gain access and load a swf from this directory, simply use the property 'Path' from the object 'App':
| Code: |
| ShockwaveFlash1.LoadMovie 1, App.Path & "\SWF\Hack.swf" |
4. How To Load Base, Movie and FlashVars
The ShockwaveFlash component has 3 properties that are useful for loading, base, movie, and flashvars. To load these, simply use their properties to load what you want:
| Code: |
| ShockwaveFlash1.Base = "swf url" ShockwaveFlash1.Movie = "swf url" ShockwaveFlash1.FlashVars = "swf url" |
5. How To Load User Defined Property Values
If you want the user to load a swf path, base, flashvars, layer, etc. you use a text box and make what they input fill in the value for these properties:
| Code: |
| ShockwaveFlash1.Base = Text1.Text ShockwaveFlash1.Movie = Text2.Text ShockwaveFlash1.FlashVars = Text3.Text |
You can also use the LoadMovie function to load on seperate layers:
| Code: |
| ShockwaveFlash1.LoadMovie Text4.Text, Text2.Text |
6. Force Loading
Sometimes, certain .swf files don't play when the application is started, to fix this error, go into your form loading event, and enter this:
| Code: |
| ShockwaveFlash1.Playing = True |
Or
| Code: |
| ShockwaveFlash1.Play |
This tells the shockwave flash component to play the .swf when the form is loaded.
7. Reset the Current SWF
Reseting the current .swf is useful when the user wants to reset all cheats he/she has activated, this basically clears out the cheats and starts a new game. Put this in your event when triggered:
| Code: |
| ShockwaveFlash1.LoadMovie 0, " " ShockwaveFlash1.LoadMovie 0, "Url Here" |
Replace the "Url Here" with the .swf url you are using.
What this does is make the component load nothing, so it replaces the original .swf, then it loads the game/file again.
1. VB Commonly Used Words
I might refer to these in some of my How To's, these are just the basic ones you should get to know:
Form - This is what your window is called
Control - These are the controls that you use such as labels, buttons, pictures, timers, and so on
EXE - The executable file
Project - The whole VB work, much like a normal project
Components - You can add these from 'Project > Components...', they are extra things you can add, examples would be an internet control, shockwave flash component, windows media player component, and much more
Properties - You can find these in the property windows to the side, they are basically the properties of the current control
Event - These are the things that are triggered when the user has done something such as clicking a button
======================================================
I'll be updating this for more How To's later on. Please report any non-working code, because I didn't have VB out when I did this, so I might have made some mistakes.
Credits: Blader(Me), and my hands for typing this all out!
Sunday, December 27, 2009
Heli Attack 3 Trainer
By Riastlin
Heli Attack 3 Trainer!
Features:
Heli Attack 3 Trainer!
Features:
- > Limitless Hyper Jump (Better try normal jump though... gets 3 times higher then hyper
[RELEASE] Super Mario Hardcore Trainer
By Megaforce300
...:::Features:::...
Jump Through Walls
Health Hack
Score Hack
Have All Weapons
Complete Round
Lifes Hack
Super Jump
Rocket Ammo
http://plunder.com/69ebe7137d
...:::Features:::...
Jump Through Walls
Health Hack
Score Hack
Have All Weapons
Complete Round
Lifes Hack
Super Jump
Rocket Ammo
http://plunder.com/69ebe7137d
[RELEASE] Weapon Trainer
By: TouchKin13 off of CheatEngineForums(Google IT)
Weapon Trainer
Trainer made for Weapon Game, Hope you like.
Thanks to Darkjohn20 for help on an ammo variable
Features
Hacks form stays on top - Easier to use.
Increased Accuracy
Unlimited Ammo
Unlimited Grenades
Unlimited A10s
Invincible BlackHawk
Unlimited Credits
DOWNLOAD LINK RAR - http://www.mediafire.com/?mtmz1wjyk2w
Virus Scan Link - http://www.virustotal.com/analisis/cf640672bf7e62b26fb7dd5e2b574feac8713a799663282296436323d4e12c7b-1261530064
Weapon Trainer
Trainer made for Weapon Game, Hope you like.
Thanks to Darkjohn20 for help on an ammo variable
Features
Hacks form stays on top - Easier to use.
Increased Accuracy
Unlimited Ammo
Unlimited Grenades
Unlimited A10s
Invincible BlackHawk
Unlimited Credits
DOWNLOAD LINK RAR - http://www.mediafire.com/?mtmz1wjyk2w
Virus Scan Link - http://www.virustotal.com/analisis/cf640672bf7e62b26fb7dd5e2b574feac8713a799663282296436323d4e12c7b-1261530064
| |
DarkOrbit & Youngdragon's Elite Trainer
Features :
Name Hack
Everything Is Free!
Rank Hack
Walk Through Walls
Round Time Hack
Reload Hack
GodMode
Godmode2
#1 in the game
Rank Hack
Hex Color
Refil HP
Labpass
Max My Stats
See All The Variables
Anti Lag
Radar
Visit Our Site
Hackpacks
C.E.F
Elite
Credits
Load
Anti Ban
1 Zillion Streetcred
No Spinner
Spawn Where I Die
Speed Hack
Shadow
Glide
http://www.plunder.com/DarkOrbit-Youngdragon-s-Elite-Trainer-download-8456fbc393.htm
Name Hack
Everything Is Free!
Rank Hack
Walk Through Walls
Round Time Hack
Reload Hack
GodMode
Godmode2
#1 in the game
Rank Hack
Hex Color
Refil HP
Labpass
Max My Stats
See All The Variables
Anti Lag
Radar
Visit Our Site
Hackpacks
C.E.F
Elite
Credits
Load
Anti Ban
1 Zillion Streetcred
No Spinner
Spawn Where I Die
Speed Hack
Shadow
Glide
http://www.plunder.com/DarkOrbit-Youngdragon-s-Elite-Trainer-download-8456fbc393.htm
Killor1's Stick Arena Demo 1 Toggled Legit
Killor1's Legit V2 1 Toggled Stick Arena Demo Legit!!
Hacks:
.::TOP ROW NUMBERS::.
Reload - Off/on - 1
Wall - Off/on -2
Speed - off/on - 3
Hp - off/on - 4
.::WEAPON HACKS(side row numbers(right)::.
Fist - 1
Knife - 2
Bat - 3
Sword - 4
Glock - 5
Ak47 - 6
Shotgun - 7
Hammer - 8
.::Other Shit::.
Anti-Lag
Death Hack - Cap Lock
Respawn - Tab
Teleport - F
Nothing else. Just trying to see if I new 1 key. A better one and last one soon.
Link: http://www.plunder.com/Stick-Arena-Demo-1-Toggled-Legit-download-8d5b5bf835.htm
Hacks:
.::TOP ROW NUMBERS::.
Reload - Off/on - 1
Wall - Off/on -2
Speed - off/on - 3
Hp - off/on - 4
.::WEAPON HACKS(side row numbers(right)::.
Fist - 1
Knife - 2
Bat - 3
Sword - 4
Glock - 5
Ak47 - 6
Shotgun - 7
Hammer - 8
.::Other Shit::.
Anti-Lag
Death Hack - Cap Lock
Respawn - Tab
Teleport - F
Nothing else. Just trying to see if I new 1 key. A better one and last one soon.
Link: http://www.plunder.com/Stick-Arena-Demo-1-Toggled-Legit-download-8d5b5bf835.htm
Killor1's Stick Arena Demo 2 Toggled Legit
~YES IT IS MEH AGAIN!~
This time a 2 toggled legit
THEH LINK
http://www.plunder.com/Stick-Arena-Demo-2-Toggled-Legit-By-Killor1-download-9f2743bc6f.htm
This time a 2 toggled legit
| :::.::Killor1's 2 Toggled Legit::.::: -Hacks- Reload on-1/off-2 Speed on-3/off-4 Hp on-5/off-6 Wall on-7/off-8 Ghost on-9/off-0 Teleport Hold-F All Hacks On-H/Off-I |
THEH LINK
http://www.plunder.com/Stick-Arena-Demo-2-Toggled-Legit-By-Killor1-download-9f2743bc6f.htm
Killor1's SAB Demo Hackpack
I was bored.
=]
Nothing special.
Theh link.
http://www.plunder.com/Stick-Arena-Demo-Hackpack-By-Killor1-download-07094efb85.htm
If no has RAR GTFO or go here
http://rarlab.com/download.htm
Nothing special.
| :::.::Killor1's Stick Arena Demo Hackpack::.::: -Hacks- Anti-Kicked 99 Kills -7 Deaths Multi-Post Speed Reload UberWaller Health |
Theh link.
http://www.plunder.com/Stick-Arena-Demo-Hackpack-By-Killor1-download-07094efb85.htm
If no has RAR GTFO or go here
http://rarlab.com/download.htm
DarkSith's Unpatchable SAB TRAINER!!! Made in Vb2008
NEW Stick Arena Ballistic Trainer (Unpatchable) By Darksith219 !!! This Trainer Was Made In Vb2008 So Might Not Work On Some People's Computer (made it in vb2008 because vb6 wasn't working tongue.gif) Very cool and fun to play with. Here's the hacks it has:
Speed hack
Name hack
Rank hack
Godmode
Wall hack
Labpass
Max out stats
Force load
Reload SWF
And MORE!
Have Fun Hacking With The New SAB Trainer V2 By Darksith219!
V3 Coming Soon To A Trainer Near You XD
10% Creds To LTH For Helping me with SOMTHING...
WELL ENJOY!
P.S If You Want To Contact Him You Can At Darksith219@hackpacks.net
Speed hack
Name hack
Rank hack
Godmode
Wall hack
Labpass
Max out stats
Force load
Reload SWF
And MORE!
Have Fun Hacking With The New SAB Trainer V2 By Darksith219!
V3 Coming Soon To A Trainer Near You XD
10% Creds To LTH For Helping me with SOMTHING...
WELL ENJOY!
P.S If You Want To Contact Him You Can At Darksith219@hackpacks.net
Killor1-BLOGOWNER ;3
Hai, I am Killor1 the owner of "this" blog. I currently am a flash/none-flash/CPU hacker. Lol, don't worry, I will not hack your PC. I haven't done it in a year so w/e. I am doing chores for people like making hacks for them and what not. I am a good hackpack maker to. I also need you to click on ads for this site to get better and it to be online and to be favorited. I also want it to be active. Thank you for your contribution to this blog.
Just tell me in chat or email what you want to be hacked
killor1@live.com
~Killor1/OwnerOfBlog
Just tell me in chat or email what you want to be hacked
killor1@live.com
~Killor1/OwnerOfBlog
Subscribe to:
Posts (Atom)
