Page 1 of 2 12 LastLast
Results 1 to 25 of 31

Thread: Request a script here!

  1. #1
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Request a script here!

    Not taking any more requests at the moments.

    I've already got my hands full trying to make a solid Tutorial Island runner. I don't want to do a bad job on this. I'm looking to make it the best and most reliable Tutorial island runner ever.

    After that, I'm going to make a goblin autofighter to level up all those noobs created with my Tutorial Island runner =). The idea is the same as WT-Fakawi's goblin scheduler. This is next on my agenda because WT's goblin scheduler started to piss me off. It has too many bugs. No offence, it's a nice script, but it's a leecher version.

  2. #2
    Join Date
    Feb 2006
    Location
    California-Foster City
    Posts
    742
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    If i wanted to become a SRL member, the first thing I WOULDN'T do would be to post thing about taking requests in the

    SRL Free Scripts All SRL Free Scripts in here....

    section


    Just my 2 cents


    bah, I dunno, errr..... a miner?
    The Welcoming Party
    Don't be a Fakawi! Get 25 hours of sleep a day!

  3. #3
    Join Date
    Nov 2006
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    A simple antiban script that i could add to my PowerWillow script would be nice

  4. #4
    Join Date
    Nov 2006
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i would ask for a noob-proof guild miner since i'm a noob... unless some1 could help me with my problem. btw isn't there a request script section at index page?

  5. #5
    Join Date
    Nov 2006
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    There is a guild miner...look in this section

  6. #6
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    How would you all like a rune mysteries runner?

  7. #7
    Join Date
    Nov 2006
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sure I suppose....what about a tutorial island autoer?

  8. #8
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Akriam View Post
    Sure I suppose....what about a tutorial island autoer?
    Sure, if that'll get me into members. WIll it?

  9. #9
    Join Date
    Sep 2006
    Location
    Scripter's Heaven
    Posts
    455
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    suggestions: dont do ess quest doer, someone is doing that

    tut runner, there are a few, but none of them work, someone is working on one, but i think it wont be that good, if you need my help, i have something right now to help you with it.

    And check out my pascal interpreter!
    <R0b0t1> No, really, I went to a bar and picked up a transvestite.

  10. #10
    Join Date
    Oct 2006
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    edgeville cutter and banker

  11. #11
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok, guys, several people have pm me and seem interested in my ISM (dual SCAR) enabled bone picker + burier. This type of script (which uses two SCARs, rather than one) will be able to be way more human like, a little laggier (I know, gotta fix that part), exponintally harder to script (this is a bad thing) and can run longer without being detected.

    I cant wait to release it to everyone ASAP.

  12. #12
    Join Date
    Nov 2006
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    the tut island autoer is an AMAZING idea!!! especially if u wanna start a new account without all the hastle... you know for autoing wit em

  13. #13
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Mafi@ View Post
    the tut island autoer is an AMAZING idea!!! especially if u wanna start a new account without all the hastle... you know for autoing wit em
    Alright alright!!!!!!! Tut runner it is!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    But for now, it's only going to use one scar as usual. Dual scar is going to come later.

    Lardmaster, Ok, I'm doing it. I need your help.

  14. #14
    Join Date
    Oct 2006
    Posts
    412
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If your going to do the tut runner, you can have a look/use some code/ideas, from my attempt.
    It gets to about the stage where you have to cook the fish, but doesent always work. It just pissed me off to much, so im trying other scripts.

    Code:
    //Written by IronTeapot
    
    program TutRunner;
    {.include srl/srl.scar}
    
    var   i,a,iMax: Integer;
          yc: Integer;
    
    var lookMax: array [0..11] of Integer;
    
    procedure setlookMax;//declaring the different amount of look possibilities
    begin
    lookMax[0]:=8
    lookMax[1]:=7
    lookMax[2]:=7
    lookMax[3]:=5
    lookMax[4]:=2
    lookMax[5]:=4
    lookMax[6]:=2
    lookMax[7]:=11
    lookMax[8]:=15
    lookMax[9]:=15
    lookMax[10]:=5
    lookMax[11]:=8
    end;
    
    procedure makeCharacter;//randomly clicking each physical attribute
    begin
    setlookMax;
    yc:=90
    a:=0
    while (a < 7) do
        begin
        iMax:=Random(lookMax[a])
        for i:= 0 to iMax do
            begin
            Mouse(165,yc,2,2,true)
            Wait (50 + Random (250));
            end;
        yc:=yc+35
        a:=a+1
        end;
    end;
    
    procedure colorCharacter;//randomly clicking each color attribute
    begin
    setlookMax;
    yc:=95
    for a:=7 to 11 do
        begin
        iMax:=Random(lookMax[a])
        for i:= 0 to iMax do
            begin
            Mouse(467,yc,2,2,true)
            Wait (50 + Random (250));
            end;
        yc:=yc+35
        end;
    end;
    
    procedure designCharacter;//does the complete look of your character and clicks accept
    begin
    makeCharacter;
    colorCharacter;
    Mouse(260,280,5,5,true) //clicks accept
    Wait(1000+Random(500))
    end;
    
    procedure guideNPC;
    begin
    MakeCompass('N');
    HighestAngle;
    SetRun(True);
       repeat
          FindMSColorTol(x,y,462457,5);//finds the guide
          MMouse(x,y,1,1);
          Wait(50+Random(50))
       until (IsUpText('une'));
       MouseFlag(x,y,1,1);
       Wait(500+Random(500));
       TalkToRand;
       GameTab(11);
       repeat
          FindMSColorTol(x,y,462457,5);//finds him for the second time
          MMouse(x,y,1,1);
          Wait(50+Random(50))
       until (IsUpText('une'));
       MouseFlag(x,y,1,1);
       Wait(500+Random(500));
       TalkToRand;
       SetRun(True);
    end;
    
    procedure exitDoor;
    begin
         repeat
          FindMSColorTol(x,y,933465,5);//find the door
          MMouse(x,y,1,1);
          Wait(50+Random(50))
          until (IsUpText('oor'));//when the door is found
          Mouse(x,y,1,1,true); //click it to open
          wait(5000+Random(500));//wait till your outside the house
    end;
    
    procedure survivalNPC;
    begin
    repeat
    FindMMColorTol(x,y,1767418,1); //find the yellow arrow on the mm
    MouseFlag(x,y,1,1); //click on it.
    until (FindMSColorTol(x,y,6224636,2)) //until sees arrow on main screen
    repeat
          FindMSColorTol(x,y,2961249,5);//finds the survival guide
          MMouse(x,y,1,1);
          Wait(50+Random(50))
    until (IsUpText('urv'));
    MouseFlag(x,y,1,1);
    Wait(500+Random(500));
    TalkToRand;
    end;
    
    procedure cutTree;
    begin
    GameTab(4)
    repeat
          repeat
                FindMSColorTol(x,y,1581621,2);
                MMouse(x,y,1,1);
                Wait(50+Random(50))
                until (IsUpText('ree'));
          MouseFlag(x,y,1,1);
          Wait(2000 + Random(1000));
    until(ExistsItem(3))
    end;
    
    procedure makeFire;
    begin
    //ClickMMColorTol(10843745,2);
    UseItem(2);
    UseItem(3);
    Wait(5000+Random(500));
    GameTab(2)
    end;
    
    procedure catchFish;
    begin
    GameTab(4);
    ClickMMColorTol(10843745,5);
    repeat
          FindMSColorTol(x,y,15382664,2);
          MMouse(x,y,1,1);
          Wait(50+Random(50))
    until (IsUpText('ish'));
    MouseFlag(x,y,1,1);
    repeat
    wait(100);
    until(ExistsItem(4))
    end;
    
    begin
    SetupSRL;
    //designCharacter
    //guideNPC
    //exitDoor;
    //survivalNPC;
    cutTree;
    makeFire;
    End.

  15. #15
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow, really? I know tut runners are hard to make since they employ almost all of the skills, so the script is going to be big. I got to the chef part too, still need to continue. I'll post an alpha when I'm done guys!

  16. #16
    Join Date
    Jun 2006
    Posts
    694
    Mentioned
    0 Post(s)
    Quoted
    31 Post(s)

    Default

    If you changed you mind you could do a rimmington yew chopper and banker.

    [thinking]wow thats alot of pathing XD[/thinking]

  17. #17
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Report: Going great so far.

    To do:

    Complete script
    Calibrate timing
    Add failsafe

    I'll post an alpha when my script can do a whole character by itself with not too many bugs.

  18. #18
    Join Date
    Oct 2006
    Posts
    40
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I cant wait for tutorial island do-er.

    I hate tutorial island. It sucks.....

  19. #19
    Join Date
    Sep 2006
    Location
    Scripter's Heaven
    Posts
    455
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok, i will pm you with my help.

    And check out my pascal interpreter!
    <R0b0t1> No, really, I went to a bar and picked up a transvestite.

  20. #20
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    if you guys are listening... which i doubt...
    please make a lobbie fisher and banker...
    plz

  21. #21
    Join Date
    Oct 2006
    Posts
    174
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    can u do a lobstes fisher script?

  22. #22
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by bambino View Post
    can u do a lobstes fisher script?
    Currently, my membership has expired, and making a lobbies fisher script in karamja is just dumb. It takes too long and has no point. Once I become a member again (after I finish my tutorial island runner), I'll make the script.

  23. #23
    Join Date
    Oct 2006
    Location
    England
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeh make the tut runner and if you need any help you can always PM me

  24. #24
    Join Date
    Nov 2006
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Im new to scar. Can i have a simple, easy to use, WORKING varock east ess miner please. Ty! (please could it have antiban and auto-colour picker)

  25. #25
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by luculentevan View Post
    Im new to scar. Can i have a simple, easy to use, WORKING varock east ess miner please. Ty! (please could it have antiban and auto-colour picker)

    Umm... I'm working on a tut runner now and wont take any more requests until that's done.

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Script Request!
    By Dynamite in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 05-30-2008, 07:07 AM
  2. a script request.
    By br34d in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 05-17-2007, 11:10 AM
  3. script request
    By the scar noob in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 12-21-2006, 03:45 PM
  4. script request
    By the scar noob in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 12-12-2006, 02:08 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
  •