Results 1 to 4 of 4

Thread: Two Questions

  1. #1
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Two Questions

    Ok First of all:
    SCAR Code:
    Include file C:\Program Files\SCAR 3.15\includes\srl\srl.scar does not exist.
    Failed when compiling
    Although its really there >.> when I go to that directory.


    Second Question:
    I'm making an auto-alcher and I can't see if this will work because of the above error. I have these two procedures:
    SCAR Code:
    Procedure AntiBan;
    Begin
    case random(12) of
      1: Hoverskill('random', false);
      2, 3: HoverSkill('magic', false);
      4: PickupMouse;
      5: Begin
           MakeCompass('w');
           wait(50+random(124));
           Makecompass('s');
           wait(50+random(124));
           MakeCompass('random');
           wait(50+random(124));
           MakeCompass('n');
         End;
      6: Mmouse(0, 0, 800, 800);
    End;
    End;
    SCAR Code:
    Procedure RegularAlch;
    Begin
    If not GameTab(7) Then
      Begin
      GameTab(7);
      case random(2) of
        1: Begin
             MouseBox(ALCHCORDS);
             Wait(25+random(57));
             MouseBox(ALCHCORDS);
           End;
        2: Begin
             Mouse(ALCHCORS, 2, 4);
             Wait(34+random(99));
             Mouse(ALCHCORDS, 0, 0);
           End;
      End;
    End;
    So now that you have the knowledge of the above two procedures, tell me one thing. Will this procedure work:
    SCAR Code:
    Procedure AntiBanAlch;
    Begin
    While AntiBan do
     RegularAlch;
    End;

  2. #2
    Join Date
    Feb 2009
    Posts
    1,447
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

  3. #3
    Join Date
    Sep 2006
    Location
    include srl/srl.scar ( aussie)
    Posts
    2,875
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [SCAR] Procedure AntiBanAlch;
    Begin
    While AntiBan do
    RegularAlch;
    End;

    [\SCAR]

    While is only used in booleans so do this


    repeat
    case random(30) of
    7: Antiban;
    end;
    RegularAlch
    until NoAlches;

  4. #4
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    But i was wondering if you could like while alch while having scar spin the compass?

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
  •