
Originally Posted by
winnets
i gota problem. im in the dwarven mines and the script picks me to mine coal when i want iron and i get owned off scorps can u manually set it to iron?
1. You should have your accs trained up so the scorpions wont attack them...
2. change this:
SCAR Code:
end;
If(level >= 38) Then
Begin
Players[CurrentPlayer].Strings[0] := 'Coal';
end;
to something like:
SCAR Code:
end;
If(level >= 70) Then
Begin
Players[CurrentPlayer].Strings[0] := 'Coal';
end;
So it will mine iron untill 70 mining or however long until the player is false/ script ends by random or anything.
& if ur in the dwarven mines or w/e add this(Inblack wont work tho):
SCAR Code:
Const
StartPlayer = 0; // Starting Player.
NumberOfUsers = 6; // How many players .
YourSRLStatsID = '1234';
YourSRLStatsPass = '1234';
SecondsToWait = 5; // Number Of Seconds You want to wait.
TimetoWait = 2500;
InGuild = true;// Are you in the dwarven mines?
MinutesPerLoad = 5; // Max amount of minutes to take before dropping.
RunDir = 'S'; // Run In Which Direction
In FindFastRandoms:
SCAR Code:
7: begin
if not Inguild then
begin
if InBlack then
begin
Result := True;
Players[CurrentPlayer].loc := 'InBlack';
Logout;
Exit;
end;
end;
end;