Which private server? What version of runescape does it play? And i really don't have time, also what's the point of botting on a private server when you can just type like /spawn item 1234 etc. to get free stuff and the likes?
E:
Simba Code:
program Killer;
{.Include srl/srl.scar}
const
MonsterColor = 660604; // Use Simba or SCAR to pick the color from screen
FightTime = 10000; // Milliseconds to wait after attacking
UpTextColor = 320482;
var
Failed: Integer;
function AttackMonster: Boolean;
var
X, Y: integer;
begin
if FindColorSpiralTolerance(X, Y, MonsterColor, 0, 0, 200, 200, 10) then // Main-screen cordinates to (0, 0, 200, 200)
begin
MMouse(X,Y,2,2);
Wait(100);
end;
if (CountColorTolerance(UpTextColor, 0, 0, 100, 20, 15) > 20) then
begin
Mouse(X,Y,2,2,True);
Wait(FightTime);
Result := True;
end else Wait(500);
end;
begin
repeat
if (not AttackMonster) then
Inc(Failed);
until(Failed > 99);
end.