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 https://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


VISUALBASIC Code
  1. Private Sub Wizards_Click()
  2. Call Flash.SetVariable("wizards", Text1.Text)
  3. End Sub




Now Put This Code into that Button Named archers

VISUALBASIC Code
  1. Private Sub archers_Click()
  2. Call Flash.SetVariable("archers", Text2.Text)
  3. End Sub




Now Put This Code into that Button Named Craftsmen

VISUALBASIC Code
  1. Private Sub Craftsmen_Click()
  2. Call Flash.SetVariable("craftsmen", Text3.Text)
  3. End Sub




Now Put This Code into that Button Named Wizards

VISUALBASIC Code
  1. Private Sub SpendablePoints_Click()
  2. Call Flash.SetVariable("spendable", Text4.Text)
  3. End Sub


And now finaly put this code into the LoadGame Button

VISUALBASIC Code
  1. Private Sub LoadGame_Click()
  2. Flash.play
  3. End Sub



And now You Have A Trainer/Cheater for the Online Game, Castle
ray230's Avatar
Author:
Views:
2,536
Rating:
Posted on Wednesday 20th August 2008 at 03:12 AM
ray230
ray230's Avatar
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's Avatar
Myne don't work :(
Posted on Wednesday 8th August 2007 at 12:18 PM
new2old
new2old's Avatar
thats the wrong game ^^
Posted on Friday 13th July 2007 at 07:50 PM
vb_king
vb_king's Avatar
If you do the script like that it doesnt work. instead of putting "https://www.xgenstudios.com/castle/castlex.swf" in movie, just put this anywhere in the script:
Code
Private Sub Form_Load()
Flash.Movie = "https://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's Avatar
doesnt work?
Posted on Monday 21st May 2007 at 03:31 PM
James
James's Avatar
wow thanks
Posted on Monday 21st May 2007 at 12:50 AM
Josh
Josh's Avatar
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's Avatar
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's Avatar
This works, thanks!