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

Thread: gilded altar helper

  1. #1
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default gilded altar helper

    {{{{new}}}}
    VERSION 1 OF THE BANKER IS COMPLETE
    Yup, but don't expect too much, it doesnt have anti random, it doesnt have antiban
    and worst of all: it messes up sometimes
    Well, have fun
    {{{{new}}}}



    Vote ended
    2 voted for yes and 0 voted for no, so either the ones that wanted to vote for no are lazy, or I'm just impatient lets just go for the second.

    So, I'm making the banking part as well hehe, wish me luck.

    Hello

    This isn't really my first script, but then again, its a very simple script.

    1) NO, it doesn't bank.
    2) NO, it doesnt light burners
    3) NO, i'm not going to update it so it does
    4) Be happy that i'm giving it to you, you way-too-much-clicking-almost-having-rsi-kids

    oh and
    5) YES i know its simple and any idiot can make it, but somehow, nobody has :-)

    SCAR Code:
    program bla;
     {.include SRL/SRL.scar}
     
     var
     x, y :integer;
     i :integer;
     
     procedure bonetje;
       begin
            i := (i+1);
            MouseItem(i,false);
            wait(109+random(53));
            if(ChooseOption('Use')) then
              if(FindObj(x,y,'Altar',9800330,20)) then
                begin
                     Mouse(x,y,2,2,true);
                end;
       end;

    begin
      SetupSRL;
      activateClient;
      gametab(4);
      MakeCompass('e');
      SetAngle(true);
      i := 5;
      repeat
            bonetje;
      until(i=28)
    end.


    YOU are supposed to bank, teleport, light burners, THEN run the script till every bone is offered (sometimes it misses a bone) and then you're supposed to tele back and start all over again


    also: inv slot 6 to 28 should have bones
    1 and 2 should be laws and airs/earths, 3 and 4 should be marrentills and 5 is a tinderbox

    have fun :-)



    P.S.: If you whine about it not being user-friendly: make it yourself next time, mmkay?


    P.P.S.: To all of you who aren't leachers : you own

  2. #2
    Join Date
    Jun 2007
    Location
    Ohio
    Posts
    341
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wow. you seem to have alot of views on how people would take this. so it just uses bones slots 6-28? hey. at least its a start, and its thoughtful on how many runes/tinderbox/herb. good job for the most part

  3. #3
    Join Date
    Dec 2007
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    no bad, clean and organized

  4. #4
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    Work on standards a little, like making the begins and ends even :
    SCAR Code:
    procedure bonetje;
    begin //Make this even to the last end
     i := (i+1);
      MouseItem(i,false);;
        wait(109+random(53));
       ChooseOption('Use');
      if(FindObj(x,y,'Altar',9800330,20)) then
       begin
        Mouse(x,y,2,2,true);
       end;
    end;

    Further, keep on going and you'll be a good scripter one day
    Ce ne sont que des gueux


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

    Default

    i use my own standards, and I use this script myself.
    I'm really scared of rsi you see :-)

    besides, I run this on my main, so no way i'm going to do it unattended

    at first i wanted to make it userfriendly, but it turned out to be a script of like 1500 lines, and I wanna keep that one for myself


    edit: and as I said, this isn't my first script, i just thought some people might be able to use this... I made a private script that does the telekinetic part in that mage training area, but no way i'm giving that one away lol

  6. #6
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    Good job

    SCAR Code:
    ChooseOption('Use');
            if(FindObj(x,y,'Altar',9800330,20)) then
              begin
                   Mouse(x,y,2,2,true);
              end;

    It will always try to find the altar, even if the chooseoption failed. It's better to do something like this:

    SCAR Code:
    if ChooseOption('Use') then
      if(FindObj(x,y,'Altar',9800330,20)) then

    Also, you only use the x and y in one procedure, so why declare them global?
    Hup Holland Hup!

  7. #7
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, failsafes aren't really needed as it's not a script that's intended to be left unattended

    and about the x, y globals, well I was messing around with the script in the hope i could also let it make walk up to the altar and light burners, but in the end I just dropped that idea and kept only this part... ^.^

  8. #8
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    Aaah basic but nice ^.^

    Next release should have bank run
    Jus' Lurkin'

  9. #9
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    read first post.....

    no

  10. #10
    Join Date
    Jun 2007
    Location
    ENGLAND
    Posts
    220
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    He said this is it as it stands.
    Organized try looking at the [TUT] on standards.

    But good job simple and easy Works well aswel.

    Exppo

  11. #11
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    exppo, i'm not new to scripting at all
    and on standards: I use my own.... a bit so people won't just take my work and claim it is theirs, because usually they at least look trough the script, and for them its pretty annoying with my custom standards but i'm used to it, and i'm keeping them... I'm not forcing you to look at the code anyway... I'll never post a non-working script after all. Maybe there are a few bugs in it, but its not like i'll post a script that doesnt do anything at all

  12. #12
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    I know you said your aren't going to update this, but can I? Like make it a banker and do everything.

    If you want it all to be yours its ok, I just think this may be the beggining of a very good script

  13. #13
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    urgh, if you REALLY want banking, I might be able to impliment it, but seriously.... Don't risk your main like that :s

    (unless you waste 69 con on another account to then buy loads of drag bones)

    (i'll let you guys vote)
    if after 5 votes more people voted for the banker, i'll make it

  14. #14
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    Well, if you make a scirpt good enough, you don't have to worry about it being banned.

  15. #15
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    *as long as you make it good enough*

    good enough is never good enough
    there's no way to be perfect hehe

  16. #16
    Join Date
    Jul 2007
    Posts
    1,055
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey, this is semi offtopic, but what is a gilded alter? I'v heard it sooooooo many times but never new. I kinda want to know seeing how my con (construction) level is 50.

  17. #17
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It's an altar where you use your dragon bones on so it gives a huge pray xp bonus.... kinda like ectofuntus bonus... a little smaller, but then again its 100 times as fast

  18. #18
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    Well, I think somewhere there is a table of how all the extra xp works, I'll have a look and edit this post when I find it.

    Found it:

    Just click here and there is the oens for all the different bones and altars and diffrenet no of burners

  19. #19
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    omfg no dagannoth bones in that table!
    BLASFEMY! (lol)
    no, but really, dagannoth bones are like UBER-exp there

    (don't forget to vote for the full script? :/)

  20. #20
    Join Date
    May 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I ain't member atm, so i can't test

    And i don't vote for that script independancy thing, cause i'm niot member atm. so i couldn't care less

  21. #21
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Whoever banned that idiot: thanks...
    Saying stuff like 'I vote no because I'm not a member' is not wanted... Besides, posting on threads of scripts you cant test in the first place is just plain retarded unless you see a bug in the code or so -.-

  22. #22
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    I'm voting yes, but btw, I'm making one that does all the banking right now

    I'm not telling you my secret little ideas

  23. #23
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    I say yeah too
    Jus' Lurkin'

  24. #24
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well
    2 for yes 0 for no.... Besides I'm home now anyway (broke my toe, walked on it for 7 hours ==> not healthy ) So I'm going to make it
    and dude_richard.... noooooooooo :'( my oh-so-original idea


    EDIT: first version on banker finished :-)

  25. #25
    Join Date
    Dec 2008
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    a good script
    and is surprising no one has thought of it

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. Gilded Alter A.S.A.P
    By [JS] in forum RuneScape News and General
    Replies: 2
    Last Post: 03-08-2009, 04:29 AM
  2. Gilded altar prayer REQUEST
    By cleav in forum RS3 Outdated / Broken Scripts
    Replies: 16
    Last Post: 02-09-2009, 03:25 AM
  3. a little bit of help at the gilded altar
    By TheSmit1967 in forum First Scripts
    Replies: 2
    Last Post: 12-07-2008, 10:41 PM
  4. Gilded altar runner
    By hamster in forum RS3 Outdated / Broken Scripts
    Replies: 21
    Last Post: 03-10-2008, 10:38 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
  •