Results 1 to 3 of 3

Thread: Walking. [Help needed]

  1. #1
    Join Date
    May 2012
    Posts
    83
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Walking. [Help needed]

    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(8of
       0
    :
       
    begin
         HoverSkill
    ('Woodcutting'false);
         
    wait(1000+Random(432));
       
    end;
       
    1PickUpMouse;
       
    2:
       
    begin
         MakeCompass
    ('N');
         
    wait(1000+random(133));
         
    MakeCompass('S');
         
    wait(1000+random(133));
         
    MakeCompass('N');
       
    end;
      
    end;
    end;

    procedure PickFlax;
    var 
    xyinteger;
    begin
        repeat
          
    if FindObj(xy'ick'152608235then
          Mouse
    (xy00false);
          
    ChooseOption('ick');
          
    repeat
            wait
    (100+random(250));
            
    AntiBan;
            
    Until not IsUpText('ew') or (InvFull);
        
    until(InvFull);
    end;

    begin
      SetUpSRL
    ;
      
    ActivateClient;
      
    DeclarePlayers;
      
    LoginPlayer;
      
    PickFlax;
    end
    Last edited by Moron; 05-13-2012 at 09:26 PM.

  2. #2
    Join Date
    Feb 2012
    Location
    Somewhere, over the rainbow...
    Posts
    2,272
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

    Default

    You can use the ObjectDTM tutorial in my sig - it's actually very easy.

    Also, post scripts in Simba tags not PHP

  3. #3
    Join Date
    May 2012
    Posts
    83
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by abu_jwka View Post
    You can use the ObjectDTM tutorial in my sig - it's actually very easy.

    Also, post scripts in Simba tags not PHP
    Thanks, i'll look into it tommorow

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •