This is the form.
procedure DeclarePlayers;
begin
HowManyPlayers := 1;//Change this accordingly
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
//SRL stats please get! -
http://stats.villavu.com/
stats_Username := '';
stats_UserPass := '';
With Players[0] do
begin
Name :=''; //Character Name
Pass :=''; //Character Pass
Active := True; //True if you want this player to be ran in the script, false if not
Strings[0] := '';//monster name
Integers[0] := ;//1st color of monster
Integers[1] := ;//2nd color of monster
Integers[2] := ;//3rd color of monster
Arrays[0] := [false, false, 3];
//[Ranging, TPA Fighting, NPC Color Tolerance]
end;
{
With Players[1] do //copy and change number accordingly to add players
begin
Name :='';
Pass :='';
Active:=True;
Strings[0] := '';//monster name
Integers[0] := 0;//1st color of monster
Integers[1] := 0;//2nd color of monster
Integers[2] := 0;//3rd color of monster
Arrays[0] := [true, false, false, 3];
//[Ranging, TPA Fighting, NPC Color Tolerance]
end;
}
end;
Whether or not you want to use it is fount here:
UseForm = False; //Use forms instead of DeclarePlayers
And you have to get the colors yourself. So load up a Runescape Client, click the eyedropper thing in Simba, and click on the Monster to get the color. Copy paste that into your form.