Results 1 to 10 of 10

Thread: Post your script here and ill try to help!

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

    Default Post your script here and ill try to help!

    hey guys im currently gettin bored with my script and i see lots of 'little' help threads taking up space so i decided to make this thread. If you need help with your script copy and paste the whole thing in here and ill try to help and hopefully other ppl will to! this should cut down on the spam for help.. i hope! thanks guys.
    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
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~


  2. #2
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    This area is for help. So its indented for each person to post their scripts on a thread and get individual help.
    But this is a good idea, some people may post there scripts here =)

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

    Default

    ya im just trying to cut down on the number of pointless threads.. like 7+ pages here if i remember correctly. like if u just need help with a simple function or procedure its prolly better to post in 1 thread so the forum isent spammed so much. well at least I would think so : )
    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
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~


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

    Default

    bump
    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
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~


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

    Default

    I could use some help, it would be help with more then one thing on this script, but i keep getting errors, and i don't know how to fix them.

    SCAR Code:
    program EarthRunePickup;
    {.include SRL/SRL.scar}

    Var
    x,y:integer;

    Procedure FindRune;
    begin
    (FindColor(x,y,936815,245,151,284,186)
    if(FindColor(x,y,936815,245,151,284,186))then
    MMmouse(x,y,1,1);
    if(IsTextUp('Take Earth rune')=true)then
    Mouse(x,y,true)
    end;

    begin
    Repeat
    FindRune;
    Until(false);
    end.

    My current error is:
    SCAR Code:
    Line 5: [Error] (17666:1): Duplicate identifier 'x' in script C:\Program Files\SCAR 2.03\Scripts\EarthRunePickup.scar

    When I delete {.Include SRL/SRL.scar} I dont get that error anymore, but i get another error:
    SCAR Code:
    Line 9: [Error] (3413:1): Identifier expected in script C:\Program Files\SCAR 2.03\Scripts\EarthRunePickup.scar

    But i'm pretty sure I need to includ srl.scar, so how should i fix these?

    PS:I'm going to sleep right now, but i'll be on tommorow.

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

    Default

    EDIT: ull need SRL for this if u dont have it.. I made it compile not quite sure if it will work.. =/ BEWARE: if u use it has no antirandom/antiban so watch it lol.. p.s did u make this? or was it just an old script?

    SCAR Code:
    program EarthRunePickup;
    {.include SRL/SRL.scar}

    const
    ERuneColor = 936815; // Put earth rune color here.



    Procedure FindRune;
    begin

    if(FindColor(x,y,ERuneColor,245,151,284,186))then
    begin
    mouse(x,y,1,1,False);
    if(IsUpText('Take Earth Rune'))then
    begin
    Mouse(x,y,1,1,False);
    ChooseOption(x, y, 'ake');

    end;
    end;
    end;

    begin
    Repeat
    FindRune;
    Until(false);
    end.

    on ur version u had written
    SCAR Code:
    (FindColor(x,y,936815,245,151,284,186)
    if(FindColor(x,y,936815,245,151,284,186))then
    it twice XD also
    SCAR Code:
    if(IsTextUp('Take Earth rune')=true)then
    is incorrect. u dont need the "=true"
    it should be
    SCAR Code:
    if(IsUpText('Take Earth Rune'))then
    well hope i could help.. =]
    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
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~


  7. #7
    Join Date
    Jan 2007
    Location
    Toronto.
    Posts
    150
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Also he declared the x, y variables when SRL already does.

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

    Default

    ya i had that posted but i edited out when i fixed his script =] lol.
    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
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~


  9. #9
    Join Date
    Jan 2007
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Awsome, it looks great. So srl already declares x,y variables? And yes I did make that script. I made one like this before when kait was up, but it was horrible, and was basically just a autoclicker. So this time I was wanting to make it look like it was a human, and not just sombody using a bad SCAR script.

    PS:How do I put in antirandoms, and what is anti-ban and how do I use it.

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

    Default

    antiban is just a function to not get banned.. download the SRL manual and go to the antiban/antirandom section and read.
    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
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Common Script Errors? Post them here!
    By Daniel in forum OSR Help
    Replies: 13
    Last Post: 10-05-2008, 08:25 PM
  2. Replies: 1
    Last Post: 06-09-2008, 11:43 AM
  3. need working script plz post 1
    By bladez390 in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 11-03-2006, 01:10 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
  •