Results 1 to 5 of 5

Thread: i dont know problum

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

    Default i dont know problum

    i just wont ignore the script in 26-81 when i tell it to... anyone fell like helping.. its an auto smelter im working on currently.. lader ill make it more refined but for now all i want it to do is work


    SCAR Code:
    program AutoSmelter;
    {.include SRL/SRL.scar}
    {.include SRL/srl/extended/xmapwalk.scar}
    {.include SRL/srl/skill/woodcutting.scar}
    //Begin at Faly east bank.
    // Do NOT use with out my concent

     Const
     B=2  //1 means useing bronze 2 means not (choose only 1 type)
     ;I=1  //1 means useing iron 2 means not   (choose only 1 type)
     ;Begin


         FindColorTolerance(x,y,4810881,85,165,400,300,3)
    If False
     Then       SendArrowWait(1,500)

    If True
          Then ClickMouse(x+20,y+5,False)
          wait(500)
          ClickMouse(x+5,y+50,True)
          wait(4000)
             If (B=1)
             Then
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(95,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)
             ClickMouse(140,69,true)
             wait(1000)

          If (I=1)
          then
          ClickMouse(95,69,false)
          wait(500)
          ClickMouse(60,140,True)
    End.

  2. #2
    Join Date
    Jun 2007
    Location
    New Yawk
    Posts
    943
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry I can't look at the script, but did you edit that part out? I mean, comment?
    I guess the holidays are over - no sig for now.

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

    Default none

    no i dont want to edit it out i only want it to work under certin conditions.. in this case B=1...

  4. #4
    Join Date
    Jun 2007
    Location
    New Yawk
    Posts
    943
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok, I see what you did wrong. You didn't wrap begin and end around your then statement.

    Thus your script should be:

    SCAR Code:
    program AutoSmelter;
    {.include SRL/SRL.scar}
    {.include SRL/srl/extended/xmapwalk.scar}
    {.include SRL/srl/skill/woodcutting.scar}
    //Begin at Faly east bank.
    // Do NOT use with out my concent
     
     Const
     B=2  //1 means useing bronze 2 means not (choose only 1 type)
     ;I=1  //1 means useing iron 2 means not   (choose only 1 type)
     ;Begin
     
     
         FindColorTolerance(x,y,4810881,85,165,400,300,3)
    If False
     Then       SendArrowWait(1,500)
     
    If True
          Then
          begin
          ClickMouse(x+20,y+5,False);
          wait(500);
          ClickMouse(x+5,y+50,True);
          wait(4000)
          end;
             If (B=1)
             Then
             begin
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(95,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000);
             ClickMouse(140,69,true);
             wait(1000)
             end;
     
          If (I=1)
          then
          begin
          ClickMouse(95,69,false);
          wait(500);
          ClickMouse(60,140,True)
          end;
    End.
    I guess the holidays are over - no sig for now.

  5. #5
    Join Date
    Jan 2007
    Location
    Illinois.. >.<
    Posts
    1,158
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I dont know if you care, but its "consent" not "concent"

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. i dont get it
    By sjlou in forum OSR Help
    Replies: 4
    Last Post: 09-13-2007, 04:53 PM
  2. i really dont know what to do
    By ShowerThoughts in forum OSR Help
    Replies: 7
    Last Post: 07-27-2007, 09:23 PM
  3. eh i dont get it...
    By yamaha317 in forum OSR Help
    Replies: 7
    Last Post: 07-13-2007, 01:05 AM
  4. I dont get it...
    By grimey in forum OSR Help
    Replies: 2
    Last Post: 06-23-2007, 04:14 AM
  5. I dont have the key
    By Hamish in forum OSR Help
    Replies: 2
    Last Post: 02-10-2007, 04:31 PM

Posting Permissions

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