View previous topic :: View next topic |
Author |
Message |
Joe3614 Advanced Cheater
Reputation: 0
Joined: 07 Feb 2007 Posts: 89
|
Posted: Wed Apr 04, 2007 11:28 am Post subject: Source Addons. |
|
|
Source addons should be posted here.
Source downloades are also excepted.
Post links, or directly quote addon tutorials here.
Any Source addons you can find ANYWHERE will earn you rep.
If many addons get posted here, Mods please Sticky
_________________
Joex
Elite Hacker.
For my latest works visit:
http://JOESUPLOAD.tripod.com
"True hackers cannot be stopped. Only slowed down"
"I await the zombies of 2012 with 12 gauge shotguns, and open arms" |
|
Back to top |
|
 |
ESPN8theocho Master Cheater
Reputation: 0
Joined: 02 Sep 2006 Posts: 252 Location: Data.Wz
|
|
Back to top |
|
 |
gamesguru Grandmaster Cheater
Reputation: 0
Joined: 22 Mar 2006 Posts: 926 Location: detroit
|
Posted: Sat May 12, 2007 7:03 am Post subject: |
|
|
Assign to CT button in Auto Assemble...made by me
Just overwrite both files in your main source folder and your good...
Link
_________________
|
|
Back to top |
|
 |
magicalimp Expert Cheater
Reputation: 0
Joined: 03 Dec 2006 Posts: 105
|
Posted: Tue May 15, 2007 5:54 pm Post subject: |
|
|
Adding Groups:
First off, locate Popupmenu2 in the mainform (in object Treeview)
Double click it to open up the editor.
Anywhere, but preferably in the group options after Set to group 6, create a new "button" (I dunno what to call it... So let's refer to it as a button from now on)
In that button's properties, in the Caption, put "Set to group blah blah blah" where blah blah blah is your group name.
In that button's properties, in Tag, put anything you want, just not any number 1-6 or any previous tags.
In the button's events, paste SettogroupXClick in the OnClick part.
Now for the prettyful part:
Starting at the beginning of your code, search for this line:
"case memrec[rec].Group of"
Go to the last case (which should be 6 : ........)
After it paste this:
Code: |
YOURTAGHERE : begin
description[i].Font.Color:=YOURCOLORHERE;
address[i].Font.Color:=YOURCOLORHERE;
valtype[i].Font.Color:=YOURCOLORHERE;
value[i].Font.Color:=YOURCOLORHERE;
end; |
Replace YOURTAGHERE with your tag (in case you really don't understand it...)
Replace YOURCOLORHERE with a color supported by Delphi.
To find those colors:
Click on a blankspot on the main form.
In Object Inspector, click on the combobox next to Color:
It should display all the colors you can use.
|
|
Back to top |
|
 |
|