Results 1 to 3 of 3

Thread: Simply Tell Me If This Will Work

  1. #1
    Join Date
    Dec 2007
    Location
    New Zealand
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Simply Tell Me If This Will Work

    What I need to know is whether the script will actually log out after 60 seconds if it can't find the RadialWalk. Because for some reason it doesn't seem to. If you want the whole script simply ask.

    SCAR Code:
    Procedure WalkToBank;
    var
       MyTime, x, y : integer;
    begin
       if not LoggedIn then Exit;
       if not(back1) then
       MarkTime(MyTime);
       repeat
         if RadialWalk(WaterCol, 270, 350, 55, 1, 1) then
           begin
             WriteLn('Leaving Spot')
             back1 := true;
             FFlag(5+random(5));
             if TimeFromMark(MyTime) > 60000 then PlayerLost;
           end;
           Wait(1000)
       until back1;
       
       if not(back2) then
       MarkTime(MyTime);
       repeat
         if RadialWalk(WaterCol, 0, 45, 55, 1, 1) then
         begin
           WriteLn('Heading To Wall')
           back2 := true;
           FFlag(5+random(5));
           if TimeFromMark(MyTime) > 60000 then PlayerLost;
         end;
         Wait(1000)
       until back2;
       
       if not(back3) then
       MarkTime(MyTime);
       repeat
         if RadialWalk(WaterCol, 0, 45, 55, 1, 1) then
         begin
           WriteLn('Passing Wall')
           back3 := true;
           FFlag(5+random(5));
           if TimeFromMark(MyTime) > 60000 then PlayerLost;
         end;
         Wait(1000)
       until back3;
       
       if not(back4) then
       MarkTime(MyTime);
       repeat
         if RadialWalk(WaterCol, 0, 45, 50, 1, 1) then
         begin
           WriteLn('Near Bank')
           back4 := true;
           FFlag(5+random(5));
           if TimeFromMark(MyTime) > 60000 then PlayerLost;
         end;
         Wait(1000)
       until back4;
       
       if not(back5) then
       MarkTime(MyTime);
       repeat
         if FindBank(x, y) then
         begin
           Mouse(x, y, 3, 3, true);
           WriteLn('Moving To Bank')
           back5 := true;
           FFlag(5+random(5));
           if TimeFromMark(MyTime) > 60000 then PlayerLost;
         end;
         Wait(1000)
       until back5;
       Players[CurrentPlayer].Loc := 'Bank';
       Bank;
    end;

    Thanks to SonsOfSheep for the Great Siggy ^^


  2. #2
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    whole script please?

    or are the back1-5's functions or global variables?

  3. #3
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    New srl isnt out yet

    the login and logout functions are broken
    ~ Metagen

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Simply Lumber by Timothegreat
    By Timothegreat in forum RS3 Outdated / Broken Scripts
    Replies: 14
    Last Post: 03-23-2008, 04:09 AM
  2. I simply can't do it.
    By crunkdood23 in forum News and General
    Replies: 2
    Last Post: 10-02-2007, 03:49 AM
  3. Why won't this work.
    By omgwoot in forum OSR Help
    Replies: 12
    Last Post: 08-16-2007, 07:48 PM
  4. how does rc work
    By del_signo in forum OSR Help
    Replies: 4
    Last Post: 05-10-2007, 02:47 AM

Posting Permissions

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