been running this off and on for a couple hours now. have to stop from time to time and switch servers cause of too much competition for the iron. but one thing i noticed was that antiban didn't seem to ever be called, so i put a call to it in before it went to click on the rock. worked fine though.
------------ edit -----------------
also there was no antirandom in the dropping part which of course is when i got mine :rolleyes:
and in order for it to drop gems i had to change the following.
Code:
if Players[CurrentPlayer].Booleans[0] then
DropArr := ['em', Rock[CurrentPlayer][Players[CurrentPlayer].Integers[0]].Name]
else DropArr := [Rock[CurrentPlayer][Players[CurrentPlayer].Integers[0]].Name];
to
Code:
if Players[CurrentPlayer].Booleans[0] then
DropArr := ['ncut', Rock[CurrentPlayer][Players[CurrentPlayer].Integers[0]].Name]
else DropArr := [Rock[CurrentPlayer][Players[CurrentPlayer].Integers[0]].Name];