Results 1 to 3 of 3

Thread: Tough cookie ;)

  1. #1
    Join Date
    Sep 2006
    Posts
    63
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Tough cookie ;)

    SCAR Code:
    program GrapeSodaAutoAlc;
    {.include SRL\SRL.SCAR}
    {.include SRL\SRL\skill\magic.scar}
    const
    hourschoice=2; //This feature will log you out in 2 hours for 20 minutes. (In hours)
    intheabove=20; // If you don't want to be logged out for 20 minutes, pick another number(in mins.)
    /////////////////////////////

    procedure setup;

    begin
    GameTab(7);
    FixMage(true);
    end;

    procedure castspells;
    begin
    CastSpell(29);
    wait(500);
    gametab(1);
    UseItem(1);
    HoverEvery(10,'magic');
    wait(2000);
    end;

    procedure srlantibanss;
    begin
    RotateEvery(6);
    RandomRClickEvery(2);
    LeaveScreenEvery(1);
    HoverEvery(4,'magic');
    DontBanMe(60);
    FindNormalRandomsChoice(Talk, Misc, Lamp, Box, Demon, ScapeRune, Trade, GameTab, Pinball, Frog, Certer, Sandwich, Plant, Black);
    LogOutEvery(hourschoice,intheabove);
    end;



    //main loop//
    begin
    SetupSrl;
    setup;
    castspells;
    end.

    //****Credits*****//
    //Thanatos for being ub3r and helping me out!Awesome guy =p//
    //Mainly the general SRL community, you guys rox!//

    Identifier Expected at line 8
    [procedure setup;]
    It worked before but I added antiban and stuff and now it won't work... Can anyone help me out, I am trying to learn SRL/SCAR and make some good scripts so I started out with a auto alc (Easy). (I'm new to scripting)

  2. #2
    Join Date
    Dec 2006
    Posts
    374
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    umm u dident include ur antiban procedure in ur main loop so i did that. i also removed some functions from ur antiban procedure because they werent declared so i just removed them.. dont know if it works! but hey it compiles =p
    SCAR Code:
    program GrapeSodaAutoAlc;
    {.include SRL\SRL.SCAR}
    {.include SRL\SRL\skill\magic.scar}
    const
    hourschoice=2; //This feature will log you out in 2 hours for 20 minutes. (In hours)
    intheabove=20; // If you don't want to be logged out for 20 minutes, pick another number(in mins.)
    /////////////////////////////

    procedure setup;

    begin
    GameTab(7);
    FixMage(true);
    end;

    procedure castspells;
    begin
    CastSpell(29);
    wait(500);
    gametab(1);
    UseItem(1);
    HoverEvery(10,'magic');
    wait(2000);
    end;

    procedure srlantibanss;
    begin
    RotateEvery(6);
    RandomRClickEvery(2);
    LeaveScreenEvery(1);
    HoverEvery(4,'magic');
    LogOutEvery(hourschoice,intheabove);
    end;



    //main loop//
    begin
    SetupSrl;
    srlantibanss;
    setup;
    castspells;
    end.

    //****Credits*****//
    //Thanatos for being ub3r and helping me out!Awesome guy =p//
    //Mainly the general SRL community, you guys rox!//
    Another awsome scripting forum! Check it out: www.Uberbroproductions.net/forums
    TRY MY VARROCK ZAMMY MAGE CURSER/CONFUSER/WEAKENER! THE LINK IS BELOW
    http://www.srl-forums.com/forum/varr...56.html?t=6356
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~


  3. #3
    Join Date
    Sep 2006
    Posts
    63
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks man, now I can finish I didn't exactly follow what you said but it helped =p

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Stat counter cookie
    By someone in forum RuneScape News and General
    Replies: 0
    Last Post: 10-04-2006, 09:09 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
  •