hey... ill dload it but i wont test it lol ill edit this in like 2 mins
EDIT: lol ok so for the one load problem... add these to ur script... in the const add
SCAR Code:
LoadsPerPerson = 15;//How Ever Many Loads Before Switching Players
and then in the cutting procedure add
SCAR Code:
If(Loads = LoadsPerPerson)then NextPlayer(False);
to the main loop so it would be like this
SCAR Code:
Begin
MainSetUp;
Wait (1000+Random (200));
InGameSetUp;
Wait (500+Random (500));
CheckForTree;
Wait (1000+Random (400));
Begin
Repeat
If Not (LoggedIn) Then Break;
Repeat
Chop;
FindEnt(TreeColor1);
FindNormalRandoms;
FindHead;
FightCheck;
CheckTrade;
Until (InvFull=True);
If (InvFull=True) Then
DropAllLogs;
Wait (400+Random (200));
Writeln (''+TimeRunning);
If(Loads = LoadsPerPerson)then NextPlayer(False);
End;
End.