Results 1 to 19 of 19

Thread: Chest Theiver

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

    Default Chest Theiver

    I made this chest theiver and i hope it works. It's only my third script, so it may not be that good. I don't really care about how it looks as long as it works and won't get caught. It's just the basics and doesn't have any antirandoms yet, but i'll try to work on them. Basically, i just want to know what i mentioned before. Thanks.(h)

    Sorry if you have any trouble downloading it cuz i have had trouble with it since i downloaded SCAR 3.0

    i realized a mistake i made in the timing, i fixed it

    Edit:
    Thanks alex, it helped me a lot, i fixed what you said and it says successfully compiled, but i don't know if it's still right or not so can you plz look over it again? or anybody else? also, about the antirandoms, the major one is the poison gas, and the box, but there is an SRL for the box, so i'll include it when i get a chance, i'll make one for the gas where it goes downstairs and comes back up, about the multiplayer, it doesn't seem to hard and i'll try to make it where it will work for 3-4 ppl, but i'm not promising anything big, lol, and as for antiban, well, i don't quite understand what antiban is, i know, sad, but it's true

  2. #2
    Join Date
    Oct 2006
    Location
    Ireland
    Posts
    855
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey
    Pretty basic looking script.. cant test it at the moment but I looked over it. Just a few pointers.

    Okay instead of findcolor use findcolortolerance. Colors in runescape change every half hour or so and if findcolor doesnt find the exact color it wont work.. with findcolortolerance you can put in a tolerance, so it doesnt have to be the exact color, but a close one. Use a tolerance of about 30-45ish maybe.

    In findchest you shoud also but a loop in. Get it to repeat until it find the text 'Chest' I cant remember the exact name of the function that finds this, something like uptext.. look it up in the srl manual.

    Also you have an infinate loop, you havnt made timestosteal go down every time you sucefully open a chest. But its a constant.. you cant change a constant. So instead make a new variable called timesStolen. And increase it every time you steal. Then in ure main loop do

    SCAR Code:
    Repeat
      Findchest;
      OpenChest;
      HoldOn;
     Until(TimesToSteal = timestolen)

    Try putting in some anti ban and multiplayer, anti randoms are also a must.

    Hope I helped

  3. #3
    Join Date
    Mar 2007
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    IsUpText('est')

    Thats the function hes talking about I believe.

  4. #4
    Join Date
    Sep 2006
    Posts
    78
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    good luck with this script cant wait till its finished

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

    Default

    thanks arti and snatch, i already knew what he was talking about but i just didn't think about including it, but thanks anyways, and snatch, i can't either, lol

    i'm stealing waiting for the gas to happen so i can get it's color

    nvm, i feel dumb now...

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

    Default

    ok, i'm taking a break today and so it might be a few more days till i get 1.2 out because it was really irritating me yesterday

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

    Default

    ok, i have been busy and i won't get to work on it today and probably tomorrow, but i should have time friday

  8. #8
    Join Date
    Mar 2007
    Location
    Under a rock
    Posts
    813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Dont triple post, just edit your last post or yourfirst post to inform people. Otherwise its jus tspam so you will get your post count up.

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

    Default

    Sorry but I was just trying to keep the thread alive, it's been about 3 days since anyone besides me has posted. And please leave a few tips to help me, don't just criticize me because i have been working on the script a little and nobody else has posted. Maybe it counts as trying to keep it alive if i Edit a post, i don't know, so that's why i made more posts. And i don't care about the post count, besides, even if i did, you just added one more.

  10. #10
    Join Date
    Feb 2007
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I Can't Wait Till It's Done.

  11. #11
    Join Date
    Mar 2007
    Location
    Under a rock
    Posts
    813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have one word for you.........Failsafes. There isnt 1 failsafe in that script and failsafes are what makes a script good. Look through tuts and other scripts so you can add failsafes and backup options and stuff.

    Lets use this an example....
    SCAR Code:
    Procedure FindChest;
    Begin
     Repeat
      FindColorTolerance(x, y, 4018270, 6, 6, 514, 337, 40);
      MMouse(x, y, 2, 2);
     Until(IsUpText('hest'));
    End;
    This is a neverending loop if it doesnt find the test which is strictly forbiden in scar scripting. Always have a buckup if it doesnt find it because this procedure can very easily run all night without ever finding the chest because maybe you die, a random comes, something else is the same color (which is VERY possible because you have a very high tolerance) and much more. Have backup features and failsafes.

  12. #12
    Join Date
    Mar 2007
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    this avoids gas?

  13. #13
    Join Date
    Apr 2007
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    gas? from a chest?........ i'll test the script out thanks

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

    Default

    Sorry, I have been busy and I won't have a chance to work on it till Saturday. This week has been really crazy for me. Thanks Rune Hacker, i'll try to make it so that it will try to find it a few times...assume something happened if it can't and log off and terminate. No, it does not avoid gas, if you had read before, i was waiting for gas, but i could never get it, i'm done stealing nats, but i'll try to figure out how to do it by checking your health.

  15. #15
    Join Date
    Oct 2006
    Posts
    161
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)
    Also your variable isn't doing anything, it is there but nonfuntional.
    You need a function for it, not just a variable. at the end ofyour steal procedure you need something such as
    TimesStolen:=TimesStolen+1;
    Otherwise your integer remains at 0, and you never reach you goal of 5.
    PS. findfight; helped my natstealer deal with the poson gas, you still take damage though
    before it finds it(those chests damage you fast too.

  16. #16
    Join Date
    Mar 2007
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ty hope it works ill test it l8er

  17. #17
    Join Date
    Apr 2007
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    mmk so it does work... to an extent.

    the stealing part is great... unless someone else is up there then its OK lol. but thats understandable?

    antirandoms. needs alot. i couldnt run this for more then maybe 20 minutes because i'd keep getting randoms and dying. maybe you should work on that?
    keep up the good work bro.

  18. #18
    Join Date
    Feb 2007
    Posts
    142
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    anti ban is something like making your script have human like functions

    so say, something like randomly opening up gametab(2) and hovering over your theiving skill, or finding a random object and clicking examine or moving the mouse randomly

    it's ghosting your bot to make it seem like a human, and not a bot, read up on some tutorials and become creative with it

  19. #19
    Join Date
    Feb 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    seems good... but like if you just do
    SCAR Code:
    Procedure OpenChest;
    Begin
     Mouse(x, y, 2, 2, False);
     ChooseOption(x, y, 'earch for trap');
    End;

    Procedure HoldOn;
    Begin
     Wait(16000+random(1000));
    End;
    it will only check after like 3 minutes... and it only takes about 30 seconds for most chests to respawn, maybe make an option for nats or something else and for nats wait 30-45 seconds or maybe ( this is what I do for stealing nats ) is just keep clicking it over and over... so like wait 3 seconds and check for traps again... and also defiantly add some fail safes and fail proofs and anti bans/antirandoms.. some other tips are that you could make it look to see if it stole from the chest and if it has, wait like 15 seconds ( for you to open it, take it and stuff ) maybe 10 seconds... but its pretty good for a first script. some fail safes you could do would be like if it finds the text "You Aren't Able To Steal From The Chest Because Of Your Level." or what ever it says, then rotate screen and try and find other chests and if its the same thing, LogOut... and maybe add multi players... well hope I helped you out good luck

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Wanted:::paladin chest thiever
    By whiteferrett in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 02-28-2008, 04:49 AM
  2. Universal Chest Theiver
    By yanix in forum RS3 Outdated / Broken Scripts
    Replies: 7
    Last Post: 01-20-2008, 04:46 PM
  3. Help with Theiver
    By markuska815 in forum OSR Help
    Replies: 8
    Last Post: 05-31-2007, 07:25 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
  •