For example, i have this as DeclarePlayers:
SCAR Code:
Players[0].Name := 'username'; //Username
Players[0].Pass := 'password'; //Password
Players[0].Nick := 'sern'; //3-4 letters of username. e.x sern
Players[0].Active := True;
Players[0].Strings[1] := 'Net'; //Net, Bait, Cage, Harpoon.
Players[0].Strings[2] := '2' //Amount of nets used
How do i get the Multi net thing work with my own made dropping?:
SCAR Code:
procedure Drop;
var I : Integer;
begin
for I := 2 to 28 do
DropItem(i);
//I cud keep writing for different amount of nets:
if (Players[CurrentPlayer].Strings[2] := '2') then
begin
for I := 3 to 28 do
DropItem(i);
end;
//And so on and on with '3' and '4', etc. But, is there a quicker way?
end;