Right. I'm completely new to scripting. I only started yesterday, this is all alien to me. Basically I made a flax picker (its a shambles, but still..) and I want it to run to the bank. Now to do this I need to get it to walk. I tried using http://villavu.com/forum/showthread....68#post1018268 but I couldn't download the necessary utility( see post 108, maybe you could help me??).
So, what i basically need is a simple way to get my character to move. I don't want to use Radiawalk- too complicated. Can anyone suggest what I should do, and where in my code I should incorporate it?
PHP Code:
program New;
{$DEFINE SMART}
{$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 AntiBan;
begin
if(not(LoggedIn))then
Exit;
case Random(8) of
0:
begin
HoverSkill('Woodcutting', false);
wait(1000+Random(432));
end;
1: PickUpMouse;
2:
begin
MakeCompass('N');
wait(1000+random(133));
MakeCompass('S');
wait(1000+random(133));
MakeCompass('N');
end;
end;
end;
procedure PickFlax;
var x, y: integer;
begin
repeat
if FindObj(x, y, 'ick', 1526082, 35) then
Mouse(x, y, 0, 0, false);
ChooseOption('ick');
repeat
wait(100+random(250));
AntiBan;
Until not IsUpText('ew') or (InvFull);
until(InvFull);
end;
begin
SetUpSRL;
ActivateClient;
DeclarePlayers;
LoginPlayer;
PickFlax;
end.