procedure LoadGlobals;
begin
WhenBreak := 90; // Minutes until break
ActAFK := True; // Do you randomly want to go AFK?
extraDebug := True; // Displays extra information about the bot
AntiBanAmount := 5; // How much anti-ban? [1=Always, 10=Sometimes]
SRLStats_Username := ''; // Stats Username
SRLStats_Password := ''; // Stats Password
end;
{------------------------------------------------------------------------------]
[ DECLARE PLAYERS: ]
[ Change accordingly. ]
[------------------------------------------------------------------------------}
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
with Players[0] do
begin
Name :=''; // Username
Pass :=''; // Password
Nick :=''; // 3-4 lower case letters of your character's name
Pin :=''; // Bank PIN
Integers[0] := 1; // Bank Slot of Logs/Unstrung Bows. Bow Strings go in the next slot!
Integers[1] := 8; // Bank Tab which all of these are located
Integers[2] := MODE_CUT; // Cuttng Bows, Stringing Bows, or Fletching Arrows? (See thread)
Strings[3] := 'Maple'; // What log/bow type? ['Normal', 'Oak', 'Willow' etc..]
// OR What arrow type? ['Bronze', 'Iron', 'Steel' etc...]
Strings[4] := 'long'; // Longbow or Shortbow? ['long', 'short']
Strings[5] := 'sw'; // What bank? ['sw', 'cw', 'br']
Booleans[6] := false; // Using SC Knife? [Yes = true]
Member := true;
Active := true;
end;
end;
I deleted for now the username and password, i left details what i wrote.
