PDA

View Full Version : need help!



relatwister
02-09-2008, 10:36 AM
i'am making a hack but i would like that if you set a hack on that there will be a green image and if it is off the image is red hoe do you do that?

p.s. sorry for my bad english iam dutch
---------------------------------------------------------------------------------------------------
edited:
i'll give an example:
this is when the hack is on/working: http://www.fsasport.nl/images/colors/green%20fluo.gif
and this is when the hack is off/not working: http://www.fsasport.nl/images/colors/349.jpg
and now is my question how can i do that in c++??:o

virus7799
02-10-2008, 06:59 PM
i'am making a hack but i would like that if you set a hack on that there will be a green image and if it is off the image is red hoe do you do that?

p.s. sorry for my bad english iam dutch
---------------------------------------------------------------------------------------------------
edited:
i'll give an example:
this is when the hack is on/working: http://www.fsasport.nl/images/colors/green%20fluo.gif
and this is when the hack is off/not working: http://www.fsasport.nl/images/colors/349.jpg
and now is my question how can i do that in c++??:o


Alright, first of all you need a "PictureBox". Now right click on the picturebox and hit "Properties". In the properties go to BackColor, and change it to red.

Say you want to make it go on when your button is clicked, and when it's clicked again it goes off. Now here's the code: (Using No recoil as an example)


Private Sub Command1_Click()
If Picture1.BackColor = &HFF& = True Then
Picture1.BackColor = &HFF00&
Command1.Caption = "No Recoil [ON]"
Timer1.Interval = 1 <------------This is where you enable the timer for hacks.
Else
Picture1.BackColor = &HFF&
Command1.Caption = "No Recoil [OFF]"
Timer1.Interval = 0 <------------This is where you enable the timer for hacks.
End If
End Sub

And here it is. Thank me if this helped you.

logan spencer
02-10-2008, 09:22 PM
virus dude ur to much of a help its so damm awsome get the f***k off of dxt ur too smart lol:p:p:eek::eek::eek

virus7799
02-11-2008, 05:57 PM
virus dude ur to much of a help its so damm awsome get the f***k off of dxt ur too smart lol:p:p:eek::eek::eek

Lol thanks man, your the first one who actually thanked me.

Edit: Lol shit sorry, didn't notice it was C++ >.>.

Wieter20
02-16-2008, 05:32 AM
Lol thanks man, your the first one who actually thanked me.

Edit: Lol shit sorry, didn't notice it was C++ >.>.

haha already noticed:P
when i saw timer1.interval = 1 i thought like: huh???? is this possible with c++ to??