Quote:
Originally Posted by
Peek XD
What do i do when it opens up smart? Im sorry im pretty nubish i just started learning all this stuff today
Someone help please? I wanna get this running :(
the only thing you need to change is
SCAR Code:
with Players[1] do
begin
Name := 'Username';
Pass := 'Password';
Nick := '3 - 4 Letters of Username';
BoxRewards := ['Lamp', 'Coins']; // Box Reward
LampSkill := 'Prayer'; // Skill to advance with Lamp Reward
Active := True; // Active ?
Location := 'Bank'; // Player location [Bank, Flax]
Integers[1] := 1000; // Amount of Flax to pick
Booleans[0] := True; // Take Breaks ?
Integers[3] := 30; // Break Every [X Minutes]
Integers[4] := 10; // Length of Break [X Minutes]
end;
first of all should be
then put your username, password and nick in
SCAR Code:
Name := 'Username';
Pass := 'Password';
Nick := '3 - 4 Letters of Username';
the nick is 3-4 letters of the middle of your name.
change
SCAR Code:
Location := 'Bank'; // Player location [Bank, Flax]
to
SCAR Code:
Loc := 'Bank'; // Player location [Bank, Flax]
then fill the following in with what the comments say beside it
SCAR Code:
Integers[1] := 1000; // Amount of Flax to pick
Booleans[0] := True; // Take Breaks ?
Integers[3] := 30; // Break Every [X Minutes]
Integers[4] := 10; // Length of Break [X Minutes]
~shut