Results 1 to 13 of 13

Thread: Varrock West Big Bone Burier

  1. #1
    Join Date
    May 2012
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Cool VarrockWestBigBoneBurier

    Hi guys,

    Firstly a little about me.

    I have like 3-4 post on Simba.
    I am a noob.
    I had never even heard of Simba or used it since two weeks ago.
    I have no former experience of programming at all.
    I made this script in 3 daysish.
    Its a crap script and its ugly and you will probably hate the code but it worked for me and so I present you my very first script...

    Varrock West Big Bone Burier

    I think this will be the only working f2p prayer script on Simba (and if not I am pissed.) It is exactly what it says it is, my script does not have flexibility (I stress this in the script as well) it can only function in Varrock West Bank(non-leachers will be able to change this though).

    It can only bury Big Bones (non-leachers will be able to change this though)

    Please leave the bones in the very first slot of your bank or it won't work.

    Pwease tell me what you think.

    Enjoy :3

    I hope it this works and the download should post below.
    Last edited by handsomenegro; 06-10-2012 at 02:51 PM.

  2. #2
    Join Date
    Feb 2012
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Simba Code:
    Procedure Antiban;
    begin
      AntiR;
      case Random(100) of
        10: RandomRClick;
        20: HoverSkill('Prayer', False);
        30: ExamineInv;
        40: RandomMovement;
        50: MissMouse(26+random(300),26+random(400));
        60: BoredHuman;
        70: RandomMovement;
        80: PickUpMouse;
      end;
    end;
    maby it's better to lower the antiban chase it's doing alot anti ban now..

    Nice script didnt test but looks nice

  3. #3
    Join Date
    Mar 2012
    Location
    Grambling, LA
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by handsomenegro View Post
    I have no former experience of programming at all.
    I think this will be the only working f2p prayer script on Simba
    For your first script, and you not having former experience of programming at all, this is an awesome script. I feel like you will learn more simba scripting, and be a great scripter sometimes soon.

    I assume there should definitely be other f2p scripts in the forum. Or, you could improve your script, and make it work flawless for a long time by adding Failsafes, better antiban and antirandoms. That will be a good contribution to the community.

    Comments about your script:
    You might add a loop (For, while, repeat) to buryBones procedure rather than calling it again and again.
    You might add additional failsafes so that the script runs longer.
    Other than that it is great.

  4. #4
    Join Date
    May 2012
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by johnbrown8976 View Post
    For your first script, and you not having former experience of programming at all, this is an awesome script. I feel like you will learn more simba scripting, and be a great scripter sometimes soon.

    I assume there should definitely be other f2p scripts in the forum. Or, you could improve your script, and make it work flawless for a long time by adding Failsafes, better antiban and antirandoms. That will be a good contribution to the community.

    Comments about your script:
    You might add a loop (For, while, repeat) to buryBones procedure rather than calling it again and again.
    You might add additional failsafes so that the script runs longer.
    Other than that it is great.
    Thanks dude! I will definitely look into it and I'll actually see if I can make this script half decent, I appreciate the support!

  5. #5
    Join Date
    May 2012
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by remco1337 View Post
    Simba Code:
    Procedure Antiban;
    begin
      AntiR;
      case Random(100) of
        10: RandomRClick;
        20: HoverSkill('Prayer', False);
        30: ExamineInv;
        40: RandomMovement;
        50: MissMouse(26+random(300),26+random(400));
        60: BoredHuman;
        70: RandomMovement;
        80: PickUpMouse;
      end;
    end;
    maby it's better to lower the antiban chase it's doing alot anti ban now..

    Nice script didnt test but looks nice
    Thanks, I will also look into this, perhaps less antiban options or less chances may I ask (to be honest I have no idea what it is doing right now so maybe ill remove like 2 options I guess)

  6. #6
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    Learn to use for to do statements.

    Simba Code:
    Procedure BuryBones;
    var
      i: Integer;
    begin
      for i := 1 to 28 do
      begin
        BuryBone(i);
        AntiR;
      end;
    end;

  7. #7
    Join Date
    May 2012
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Nebula View Post
    Learn to use for to do statements.

    Simba Code:
    Procedure BuryBones;
    var
      i: Integer;
    begin
      for i := 1 to 28 do
      begin
        BuryBone(i);
        AntiR;
      end;
    end;
    dude thanks so much, I knew there was some way of making it a hell of a lot shorter but I just didn't understand, I am gonna implement this into my script right now sir!

  8. #8
    Join Date
    Dec 2011
    Posts
    209
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Very nice start! Checkout some more tutorials, I feel like you have some potential

  9. #9
    Join Date
    Mar 2012
    Location
    Alberta
    Posts
    52
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice first script, you should make one for Soulwars cool if you don't though cause I might go for it (it'll be my first script)

  10. #10
    Join Date
    May 2012
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by SwagDaddy View Post
    Nice first script, you should make one for Soulwars cool if you don't though cause I might go for it (it'll be my first script)
    Soul wars has a chest right, its just I have never been mems but I am working right now on making more bank locations and if you want I could easily make one for you for soulwars!

  11. #11
    Join Date
    May 2012
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Gushers View Post
    Very nice start! Checkout some more tutorials, I feel like you have some potential
    Haha cheers!

  12. #12
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    nice one!! i might try and test this but im pissed atm cause someone robbed 25m off my account, got 5k+ bones to burry on my main which is purely ftp

  13. #13
    Join Date
    May 2012
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by The Killer View Post
    nice one!! i might try and test this but im pissed atm cause someone robbed 25m off my account, got 5k+ bones to burry on my main which is purely ftp
    Haha epic! Although the first download has now been completely revamped!

    I have now added all the normal SRL bank locations (not chests yet)
    All the F2p Bones!!!
    A progress report!
    A better antirandom and antiban system and it looks cooler!

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •