Simba Code:
/////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////// Fatmess's Ivy script ///////////////////////////
//////////////////////////////////////////////////////////////////////////
program New;
{$i srl/srl.simba}
Procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name :='';
Players[0].Pass :='';
Players[0].Nick :='';
Players[0].Active:=True;
end;
procedure ChopIvy;
var x, y: integer;
begin
if FindObj(x, y, 'hop', 1785912, 35) then
Mouse(x, y, 0, 0, false);
ChooseOption('hop');
repeat
FindNormalRandoms
Wait(30000+random(250));
Until not IsUpText('vy') or (InvFull);
end;
procedure AntiBan;
begin
if(not(LoggedIn))then
Exit;
case Random(8) of
0:
begin
HoverSkill('Woodcutting', false);
wait(2453+Random(432));
end;
1: PickUpMouse;
2:
begin
MakeCompass('N');
wait(100+random(133));
MakeCompass('S');
wait(50+random(133));
MakeCompass('N');
FindNormalRandoms
end;
end;
end;
begin
SetUpSRL;
ActivateClient;
DeclarePlayers;
LoginPlayer;
ChopIvy;
end.
got alot of help from this tutorial :P
http://villavu.com/forum/showthread.php?t=44942