Contents
1.Info. On This Tut
2.What You Will Need
3. If Your New To Delphi - How To install ShockwaveFlash
4.Steps For Making
1. This Tut Will Teach You How To Make A trainer for aqworlds with ways to send packets by button, how to link forms and other stuff.
this Tut Will be constantly updated if you request Something to be in it. to request please post or pm me.
Also Pictures Will Be Coming Soon.
2.You Need:
Delphi Personal (Choose one Delphi Version)AQWPE 100% Fixed By Yoshi is awesome With SWF And Base Editor
3.
How To Install ShockwaveFlashFirst Goto the components menu and click, "import new active x control"

then go down the list until you find ShockwaveFlash [Version1.0]. then click "Install".

Now You Should Have A TShockwaveFlash Icon under the ActiveX tab

If You Dont then repeat the Above Steps, But instead of clicking "Install", click "Create Unit".
4.Steps
1. install delphi and open the "Project1.dpr" file in the AQWPE src
(i take no credit in the making of AQWPE only for fixing it).

2. First I Will Teach You How To Send A Packet By Button

There is Two Ways To do this that i wil teach you.
For Those Using Fixed AQWPE,
make a button and put this code
Code:
send1packet('PacketGoesHere');
For Those Using Their Own Form,
Code:
var
packetData:String;
begin
packetData:='PacketGoesHere';
send(StrToInt(SockDisp.Text),pd[1],Length(pd)+1,0);
The Reason that they are different is because if you go into my form and look for the procedure
Code:
procedure TMain.send1packet(pd: string);
begin
send(StrToInt(SockDisp.Text),pd[1],Length(pd)+1,0);
end;
the code is there. this is for your convinience.
Step3.
OPTIONAL
This Step is for when you want to link forms such as a hacks menu or swf and base changer.
first save the form that you want to attach into the folder that the trainer is in.
then find the part of BOTH forms which says
Code:
Implementation
underneath implementaion put uses and the unit's name

then put a button or whatever in the main and code it with
Code:
Form'sNameHere.visible:=not(Form'sNameHere.visible);


then press to start a debug session to find out if everythin works if it doesnt then you fail and need to try again or give up.
______________________________________
How to get the swf
For Mozilla Firefox
1.Open Up your Mozilla Firefox
2.Goto http://game.aqworlds.com/game01/default.asp
3.Click View
4.Page Source
5.find the swf
And Your Done
For Internet Explorer
1.Open Internet Explorer
2.Goto http://game.aqworlds.com/game01/default.asp
3.Click Page
4.View Source
5.find the swf
And Your Done