Forgot Password / Register
Site Statistics
Total Members: 520
Total Tutorials: 242
Newsest User: 8884244477
Todays Unique Hits: 23
0 Users 2 Guests Online

Castle (Game) Cheater

Castle is a Game on Xgenstudios.com

here is a VB Tut to how to make a Cheater for the Game.... Tut Is Beginning

First Make a ShockwaveFlash object and name it "Flash" .... < find it under components...... In the ShockwaveFlash Propoties you have to put this address http://www.xgenstudios.com/castle/castlex.swf into Movie

Now make 5 Buttons ...
Name button 1 ... "LoadGame"
Name Button 2 ... "Wizards"
Name button 3 ... "Archers"
Name Button 4 ... "Craftsmen"
Name button 5 ... "SpendablePoints"

Now Make 4 TextBoxes
Name Textbox 1 ... "Text1" < this is where u change how many wizards u have
Name Textbox 2 ... "Text2" < this is where u change how many archers u have
Name Textbox 3 ... "Text3" < this is where u change how many craftsmen u have
Name Textbox 4 ... "Text4" < this is where u change how many spendable u have

Now Put This Code into that Button Named Wizards


Code

Private Sub Wizards_Click()
Call Flash.SetVariable("wizards", Text1.Text)
End Sub




Now Put This Code into that Button Named archers

Code

Private Sub archers_Click()
Call Flash.SetVariable("archers", Text2.Text)
End Sub




Now Put This Code into that Button Named Craftsmen

Code

Private Sub Craftsmen_Click()
Call Flash.SetVariable("craftsmen", Text3.Text)
End Sub




Now Put This Code into that Button Named Wizards

Code

Private Sub SpendablePoints_Click()
Call Flash.SetVariable("spendable", Text4.Text)
End Sub


And now finaly put this code into the LoadGame Button

Code

Private Sub LoadGame_Click()
Flash.play
End Sub



And now You Have A Trainer/Cheater for the Online Game, Castle
ray230
Author:
Views:
2230
Rating:
Posted on Wednesday 20th August 2008 at 03:12 AM
ray230
ray230
Lol thanks for all the feedback guys! ^__^
Oh and thanks for the tip vb_king !
Posted on Saturday 29th December 2007 at 01:08 PM
Dalez
Dalez
Myne don't work :(
Posted on Wednesday 8th August 2007 at 12:18 PM
new2old
new2old
thats the wrong game ^^
Posted on Friday 13th July 2007 at 07:50 PM
vb_king
vb_king
If you do the script like that it doesnt work. instead of putting "http://www.xgenstudios.com/castle/castlex.swf" in movie, just put this anywhere in the script:
Code
Private Sub Form_Load()
Flash.Movie = "http://www.xgenstudios.com/castlewars/castlewars.swf"
Flash.Play
End Sub


That way you won't need to put the "LoadGame" button and your Shockwave Flash file will work. The problem was that xgenstudios changed the link to castle wars + they were redirecting the swf file to their homepage. Now, it'll work.
Posted on Wednesday 11th July 2007 at 11:43 PM
vb_king
vb_king
doesnt work?
Posted on Monday 21st May 2007 at 03:31 PM
James
James
wow thanks
Posted on Monday 21st May 2007 at 12:50 AM
Josh
Josh
Use this instead of making a button.
Code

Private Sub Form_Load()
Flash.Play
End Sub
Posted on Sunday 20th May 2007 at 08:38 PM
Diablosblizz
Diablosblizz
Rofl, I added to many Wizards on round 2 and it opened 13 Internet Explorers. I was almost using 1000 mb of ram on a 512 chip :P.

Phew, Im glad I never blew them..
Posted on Sunday 20th May 2007 at 08:32 PM
Diablosblizz
Diablosblizz
This works, thanks!