View previous topic :: View next topic |
Author |
Message |
extol How do I cheat?
Reputation: 0
Joined: 11 May 2007 Posts: 9
|
Posted: Sun May 27, 2007 9:27 am Post subject: Speedbutton codes to open autoassembler? |
|
|
hi, im making a shortcut button to open the autoassembler but i have no clue wat to put for in the procedure . |
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Sun May 27, 2007 10:21 am Post subject: |
|
|
look at the code that gets executed when you press ctrl+alt+a
or just add a speedbutton, and set action to actAutoAssemble _________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
extol How do I cheat?
Reputation: 0
Joined: 11 May 2007 Posts: 9
|
Posted: Sun May 27, 2007 12:13 pm Post subject: |
|
|
im very lost...i did ctrl+alt+a on my interface and autoassembler popped up. wat im having trouble with is the coding for the speed button to open auto assembler.
procedure TMainForm.SpeedButton5Click(Sender: TObject);
begin
end;
no clue..... |
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Sun May 27, 2007 12:31 pm Post subject: |
|
|
no code needed
Just place the speedbutton, and in the action propertie fill in "actAutoAssemble" _________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
vietthomas Advanced Cheater
Reputation: 0
Joined: 08 Dec 2006 Posts: 83
|
Posted: Mon May 28, 2007 4:32 pm Post subject: |
|
|
does anyone know one for injecting dll |
|
Back to top |
|
 |
gamesguru Grandmaster Cheater
Reputation: 0
Joined: 22 Mar 2006 Posts: 926 Location: detroit
|
Posted: Tue May 29, 2007 2:39 pm Post subject: |
|
|
make a new speedbutton or button, double click it in delphi
and where it takes you should look like this:
procedure TMainForm.SpeedButton5Click(Sender: TObject);
begin
end;
in the space between begin and end; put in
tfrmautoinject.create(self).show;
it should now look like this:
procedure TMainForm.SpeedButton5Click(Sender: TObject);
begin
tfrmautoinject.create(self).show;
end; _________________
|
|
Back to top |
|
 |
vietthomas Advanced Cheater
Reputation: 0
Joined: 08 Dec 2006 Posts: 83
|
Posted: Tue May 29, 2007 5:45 pm Post subject: |
|
|
thanx  |
|
Back to top |
|
 |
|