Results 1 to 3 of 3

Thread: My script won't work???

  1. #1
    Join Date
    Jul 2007
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default My script won't work???

    Code:
    program ZetasMapleChop;
    
    {.include SRL\SRL.scar}
    {.include SRL\SRL\Skill\Woodcutting.SCAR}
    
    const
      Maple = 19058; //the color of the maple
      Maple2 = 16760;
      Maple3 = 9548;
      Tol = 12;
      RunDirection = 'S'; //the direction to run if in fight
      LogsToChop = 50; //how many logs to chop)
    
    procedure DeclarePlayers;
    begin
    HowManyPlayers := 1; //Number of players to use
     NumberOfPlayers(HowManyPlayers); //Don't Touch
       CurrentPlayer := 0;  //Player to start with
       Players[0].Name := 'shampoo'; //Players username
         Players[0].Pass := ''; //Players password
           Players[0].Nick := 'hamp'; //3-4 characters from players username(Lowercase and no spaces)
             Players[0].Active := True;     //Are you using this player?
              end;
    
    procedure WalkToMaples;
    begin
    MakeCompass('N');
    RadialWalk( 2264447 , 10, 52, 40, 0, 0);
    wait(1000+random(687));
    end;
    
    procedure ChopMaples;
    var
    
      ChopMark: Integer;
    begin
      repeat
        if FindObjMulti('aple tree', Maple, Maple2, Maple3, Tol) then
        begin
          GetMousePos(X, Y);
          Wait(500 + Random(102));
          Mouse(X, Y, 1, 1, True);
           MarkTime(ChopMark);
          repeat
            Wait(500 + Random(250));
            FindNormalRandoms;
          until(TimeFromMark(ChopMark) >= (10000 + Random(5000)));
    
        end;
      until(False);
    end;
    
    procedure WalkToBank;
    begin
    if (InvFull) then
    begin
    MakeCompass('N');
    RadialWalk( 9606557 , 218, 195, 50, 0, 0);
    end;
    end;
    
    
    begin
      ActivateClient;
      SetUpSRL;
      DeclarePlayers;
      repeat
        if not LoggedIn then loginplayer; //If it gets logged out, it will assume that something went wrong and continue to the next player, setting the current player inactive.
         WalkToMaples;
          ChopMaples;
           WalkToBank;
       until(false)
    end.
    It will log in and just sit there now??? Before i had problems but it would cut maples now it just logs in and sits there.. it worked earlier today?

    EDIT: this is what happens.. seems other people are having the same problem.. http://www.srl-forums.com/forum/vbug...ew&vbug_id=130





  2. #2
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Umm SRL isn't updated yet...

  3. #3
    Join Date
    Jul 2007
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ah srry i thought this
    RUNESCAPE UPDATE 06-08-07...SRL NEEDS TWEAKING

    was 08-06 for some reason and though it was just old or something :S





Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Help getting this script to work
    By kollmann in forum OSR Help
    Replies: 3
    Last Post: 03-31-2008, 09:09 PM
  2. cant get script to work
    By jones264 in forum OSR Help
    Replies: 1
    Last Post: 08-06-2007, 12:28 PM
  3. Cant get the script to work -.-
    By soul hacker in forum OSR Help
    Replies: 11
    Last Post: 06-24-2007, 03:37 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
  •