Page 1 of 3 123 LastLast
Results 1 to 25 of 62

Thread: Pure: Simba;

  1. #1
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default Pure: Simba;

    I understand the name of this thread is rather lame.
    Okay now onto the the thread.

    I decided to make a new account, whats so special about that you ask? This account will be trained by the scripts on this site/made by me! (Account has 0gp, no stats ALL will be harvested by Scripts + A little merching)

    Note: All scripts made by me that get used will be posted, all scripts I use (not made by me) will be linked.
    Note: All scripts will be added to "Downloads" (Besides those that are not mine, they will just be linked)
    Note: The scripts I make for this thread, are SINGLE purpose scripts and lack sophistication.


    1/4/2012 (midnight)
    Here is a starting picture.


    I am currently training mage at Zammy Mage (Varrock castle)
    Gear: Full iron + Vambraces (-65 mage bonus 100% Splash)
    Script (R4_C_Spell)
    Simba Code:
    program R4_C_Spell;
    {$i srl/srl/misc/smart.scar}
    {$i srl/srl.scar}

    {Combat Spells only, make sure you select autofire before running
    -r4nd0m}


    Var
    x, y :Integer;

    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0; // This is the player to start with
      Players[0].Name := ''; // Username
      Players[0].Pass := ''; // Password
      Players[0].Nick := ''; // 3-4 lowercase letters from username;
      Players[0].Active := True; // Set to true if you want to use Player 0
      Players[0].BoxRewards := ['Xp', 'mote', 'ostume', 'oins', 'aphire', 'ssence'];
    end;

    procedure Antiban;
      begin
          case Random(60) of
            20: HoverSkill('Magic', False);
            30: PickUpMouse;
            40: RandomMovement;
            50: BoredHuman;
            59: ExamineInv;
          end;
          Writeln('Antiban in action!');
      end;

    function mage(): Boolean;
      begin
      Makecompass('w');
        repeat
          Antiban;
          FindNormalRandoms;
          Wait(RandomRange(2000, 7000));
          FindObjCustom(x, y, ['amorak'], [2897508, 3029096, 3555706, 3423860], 5);
          Mouse(x, y, 5, 5, false);
          Wait(RandomRange(250, 500));
          ChooseOption('ttack');
        until false;
      end;


    begin
      Smart_Server := 77;
      Smart_Members := False;
      Smart_Signed := True;
      Smart_SuperDetail := False;
      SetupSRL;
      ClearDebug;
      DeclarePlayers;
      LoginPlayer;
      mage;
    end.

    1/4/2012

    I am currently continuing my magic training but have moved on from Zamorak Mage (Due to ineffective training method, very slow) I have switched to teleportation to lumbridge.

    Picture:


    Here is the script I am using (R4_LumbTele)
    Note: No antiban, so I would advise against using it for yourself.

    Simba Code:
    program R4_LumbTele;
    {$i srl/srl/misc/smart.scar}
    {$i srl/srl.scar}

    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1; //
      NumberOfPlayers(HowManyPlayers); //
      CurrentPlayer := 0; //

      Players[0].Name := ''; //
      Players[0].Pass := ''; //
      Players[0].Nick := ''; //
      Players[0].Active := True;
    end;

    procedure Tele;
    var
      Waits: Integer;
    begin
    Wait(5000 + Random(95));
      Mouse(744,188,5,6,true);
      repeat
        Mouse(598,302,0,0,true);
        Wait(99 + Random(65));
        Inc(Waits);
        until(Waits = 3600);
        Logout;
    end;

    begin
      Smart_Server := 77;
      Smart_Members := False;
      Smart_Signed := True;
      Smart_SuperDetail := False;

      ClearDebug;
      SetupSRL;
      DeclarePlayers;
      LoginPlayer;
      Tele;
    end.

    1/5/2012 (Morning)

    Still working on magic, aiming for level 60. I stopped yesterday at level 55 (so I could alch). Anyhow, I created an alching script because MSI's didn't seem to work.

    Note: Again I would advise against using this script as it really has no anti-ban.


    http://i.imgur.com/CGjW2.png (Achieved 60 magic)

    R4_Alch
    Simba Code:
    program R4_Alch;
    {$i srl/srl/misc/smart.scar}
    {$i srl/srl.scar}

    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1; //
      NumberOfPlayers(HowManyPlayers); //
      CurrentPlayer := 0; //

      Players[0].Name := ''; //
      Players[0].Pass := ''; //
      Players[0].Nick := ''; //
      Players[0].Active := True; //
    end;

    procedure Alching;
    var
      Waits: Integer;
    begin
      repeat
        Mouse(698,351,0,0,true);
        Wait(111 + Random(60));
        Mouse(698,351,0,0,true);
        Wait(1211 + Random(60));
        Inc(Waits);
        until(Waits = 1600);
        Logout;
    end;

    begin
      Smart_Server := 77;
      Smart_Members := True;
      Smart_Signed := True;
      Smart_SuperDetail := False;

      ClearDebug;
      SetupSRL;
      DeclarePlayers;
      LoginPlayer;
      Mouse(744,188,5,6,true);
      Alching;
    end.

    1/5/2012 (Mid-Day)

    I am now aiming for 40 attack, started training on men in Edgeville. I was going to use Justin's Edgeville man killer but I just kept getting an odd SPS error (Might be related to SRL 5, and my failure to comply correctly). I ended up making my own version; no where near as fancy but it gets the job done. Kills men, eats food.

    Note: Pretty sure my method of waiting instead of actually checking if they died isn't a great one :P. I would advise against using this script when other's are fighting in the same area. (Does not pick up)



    Script name: R4_EdgeManKiller
    Simba Code:
    program R4_EdgeManKiller;
    {.include SRL/SRL/Misc/Smart.simba}
    {.include SRL/SRL.simba}
    {.include SRL/SRL/Skill/Fighting.simba}


    Var
    man, x, y :Integer;
    ManC :TIntegerArray;
    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0; // This is the player to start with
      Players[0].Name := ''; // Username
      Players[0].Pass := ''; // Password
      Players[0].Nick := ''; // 3-4 lowercase letters from username;
      Players[0].Active := True; // Set to true if you want to use Player 0
      Players[0].BoxRewards := ['Xp', 'mote', 'ostume', 'oins', 'aphire', 'ssence'];
    end;


    procedure Antiban;
      begin
          case Random(60) of
            20: HoverSkill('Thieving', False);
            30: PickUpMouse;
            40: RandomMovement;
            50: BoredHuman;
            59: ExamineInv;
          end;
          Writeln('Antiban in action!');
      end;

    procedure AntiRandom;
      begin
        FindNormalRandoms;
        LampSkill := 'attack';
        LevelUp;
      end;

    procedure HpCheck; //Thanks Narcle, used your script to learn how to do this
    var
      a, t, b, x, y:Integer;
    begin
      if (HPPercent < 50) and LoggedIn then
      begin
        if not InvEmpty then
          for a := 0 to 2 do
            for b := 1 to 28 do
            if ExistsItem(b) then
            begin
              MMouseItem(b);
              GetMousePos(x, y);
              if WaitUptext('Eat', 400) then
              begin
                Mouse(x,y,0,0,false);
                if WaitOption('Eat', 400) then
                begin
                  t := GetSystemTime;
                  while ExistsItem(b) and ((GetSystemTime-t) < 2000) do
                    wait(20);
                  if (HPPercent > 70) then
                    Exit;
                end;
              end;
            end;
            if (not LoggedIn) or (HPPercent > 50) then
              Exit;
      end;
    end;

    function Kill(): Boolean;
      begin
      ManC := [3028013 ,3752248 ,4081726 ,3291441];
        repeat
          Antiban;
          Antirandom;
          Wait(RandomRange(200, 700));
          FindObjCustom(x, y, ['an'], ManC, 3);
          Mouse(x, y, 2, 2, true);
          ChooseOption('ttack');
          HpCheck;
          Wait(RandomRange(10000, 15000));
          HpCheck;
        until false;
      end;

    function List(): Boolean;
      begin
        repeat
          HpCheck;
          Kill;
        until false;
      end;

    begin
      Smart_Server := 77;
      Smart_Members := True;
      Smart_Signed := True;
      Smart_SuperDetail := False;
      SetupSRL;

      ClearDebug;
      DeclarePlayers;
      LoginPlayer;
      List;
    end.

    1/6/2012

    I am still aiming for 40 attack/60 attack. With a side goal of 50 strength for the time being. I am starting to think men are just too slow so I am moving my account to a different NPC haven't decided where yet. Anyway here is my current progress.



    1/7/2012

    Sorry for nothing special, I gained no levels. I tried to make my script work at muggers in the dungeon at Mudskipper Point; unfortunately for me the script just really had a hard time distinguishing the colors between the walls/ground/mugger (They were the same dirty brown) Tolerance didn't really do me any favors there either, after many attempts I just figured why waste time here! Go back to men :P.

    1/8/2012

    So I got tired of my ManFighter, and moved onto minotars/Goblins in the Stronghold with Narcle's Fighter. This quickly got me 43 attack and 42 strength (Stopped melee training for now, will continue later and get 60 attack/70 strength). I then created a prayer script, using the dropall method (and changing it) unfortunately this didn't workout too well so I just used Insane's BoneBury.

    My current goals for this account:
    60 attack
    70 strength
    50 range
    60 magic
    70 HP
    35 prayer
    50 WC
    50 Fish
    60 mining



    1/11/2012

    Still training on Minotaurs with Narcle's Fast Fighter. Waiting for uptext to be fixed .


    1/19/2012

    Started training on RATS to prevent food depletion with Narcle's Fast Fighter.


    1/19/2012 (NIGHT)

    Started training on RATS to prevent food depletion with Narcle's Fast Fighter.
    Last inventory of food (The bank of the account can support, and got the range level I wanted!)


    1/22/2012

    Started training mining! I just finished actually took 2 days to get from 1-60.
    I used YoHoJo's [P]ower [M]iner [S]upreme.

    Next up we either have money making, fishing, or woodcutting! You decide.


    1/24/2012

    I decided to continue training mining! I went from 60-70, I will stop training mining now
    I used YoHoJo's PMS :P

    Next up we have fishing, thank you bwuk for voting


    Scripts I used:
    Narcle's FastFighter
    Check out this guide I made for use with Narcle's Fighter
    YoJoJo's PMS (Power miner)
    Last edited by [XoL]; 01-20-2012 at 02:44 AM.




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  2. #2
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Reserve




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  3. #3
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Wow, cool idea! Hope to see you advance quickly!
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  4. #4
    Join Date
    Dec 2011
    Posts
    78
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I'd like to too see the end product :P

  5. #5
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Updated, gained a few magic levels
    Made a VERY makeshift script, just to use a couple thousand laws that wouldn't sell after merch -.-

    Profit wise I have made 2m in 1 day on the account starting with 40k.




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  6. #6
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    How did you get your 2m? I don't get it

    E: As is -65 mage bonus. I thought it was impossible without g'dhide vambs in F2P?
    Last edited by Er1k; 01-05-2012 at 01:30 AM.

  7. #7
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Quote Originally Posted by nosaj.421 View Post
    How did you get your 2m? I don't get it

    E: As is -65 mage bonus. I thought it was impossible without g'dhide vambs in F2P?
    I just didn't use a staff (gets me exactly -65) its expensive but meh.
    With the 40k I earned from (1. Some random guy said welcome to runescape and gave me a rune plate) (2. From the strongholds)

    I merched the 40k into 350k. I then smart horsed 350k - 1.2m Merched the 1.2m in edgeville/ge and made it into 2m.

    Was kinda complicated but worked well in the end, it sucks not having 500m+ to use :P




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  8. #8
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Damn if I could merch like that then I don't even need to bot What were you merching and what do you mean by smart horse?

  9. #9
    Join Date
    Dec 2011
    Posts
    78
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    very curious about all the runes :P If done legit, then very very nice, could learn alot from u :P

  10. #10
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Good luck with this, I always like to follow blogs like this.

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  11. #11
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Quote Originally Posted by nosaj.421 View Post
    Damn if I could merch like that then I don't even need to bot What were you merching and what do you mean by smart horse?
    I have been merching Logs/Runes/Essence (Fast flip)/Rune armor sets/Slowly moving towards Corrupt gear (But unfortunately spent all my money for my natures)

    Horse, is a game in F2P (It is really lame, but works the same way dice does) You guess what phrase the character will say when they play with the horse. Smart horsing is the same as Smart Dicing: Double your bet every time you lose, so that when you do win you don't lose anything but instead gain.


    Quote Originally Posted by butterlyr View Post
    very curious about all the runes :P If done legit, then very very nice, could learn alot from u :P
    Thanks , it is all done legit. I am going to start using scripts to make money on the account too (Merching with a low cash pile is a pain)

    Quote Originally Posted by HyperSecret View Post
    Good luck with this, I always like to follow blogs like this.
    Thanks I appreciate it!
    --------------------

    Newest blog addition has been added (55 magic now)




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  12. #12
    Join Date
    Dec 2011
    Posts
    88
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice Hope its gets far and like the idea 'Cant Find script for it' instead of request i know ill make my own

  13. #13
    Join Date
    Nov 2011
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    your dates say 2011 :P

  14. #14
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Thanks (Fixed).

    Here is a picture from today (Got 60 magic from the R4_Alch Script)


    I am thinking I will train attack now.
    ---------
    E: Started training attack new blog post added! Attack is in possession




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  15. #15
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wow you're amazingly fast... I only managed to get 59 magic yesterday by putting together a gatestoner that I made for myself
    keep up the good work!

  16. #16
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Quote Originally Posted by R4nd0m View Post
    Horse, is a game in F2P (It is really lame, but works the same way dice does) You guess what phrase the character will say when they play with the horse. Smart horsing is the same as Smart Dicing: Double your bet every time you lose, so that when you do win you don't lose anything but instead gain.

    Mathematically ur method wont work, u will almost certainly bankrupt before u even double your principle sum,
    http://en.wikipedia.org/wiki/Martingale_(betting_system)
    but if it did work for u this time its probably pure luck; dont try it again though. I usually just transfer rsgp from other account to new accts or just bot skills like wc 1st

  17. #17
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Quote Originally Posted by riwu View Post
    Mathematically ur method wont work, u will almost certainly bankrupt before u even double your principle sum,
    http://en.wikipedia.org/wiki/Martingale_(betting_system)
    but if it did work for u this time its probably pure luck; dont try it again though. I usually just transfer rsgp from other account to new accts or just bot skills like wc 1st
    The principle works if you have unlimited money or have some what decent luck. I have lost 10+ in a row, very unfortunate and at 10+ the bet is in the hundred millions. The thing is I normally win by the 3-4th time, so starting with a intial bet of 100k/ 200k/ 400k/ 800k/ 1.6m (I would have to lose 5 times in a row before my account became bankrupt.

    New updates today, sorry for nothing really interesting




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  18. #18
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Nice to see you tried to use my script, ill take a look into it now why it isn't working correctly.
    Support for this project

  19. #19
    Join Date
    Mar 2011
    Posts
    254
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Support buddy all the best

  20. #20
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Quote Originally Posted by [J]ustin View Post
    Nice to see you tried to use my script, ill take a look into it now why it isn't working correctly.
    Support for this project
    I think it was my fault, I recently re-installed simba and I don't think I had SPS enabled.
    NEW update added!

    Also created this thread for narcle's fighter
    http://villavu.com/forum/showthread.php?p=886630
    Last edited by [XoL]; 01-09-2012 at 12:58 AM.




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  21. #21
    Join Date
    Feb 2006
    Location
    Canada
    Posts
    2,254
    Mentioned
    21 Post(s)
    Quoted
    238 Post(s)

    Default

    Hey these blogs are awesome, good luck!

  22. #22
    Join Date
    Dec 2011
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is cool, I'll be watching this thread. =p

  23. #23
    Join Date
    Oct 2007
    Posts
    818
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you plan on turning this into a real pure, I suggest you save some attack xp and prayer xp for completing quests.

  24. #24
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Great progress. Just one question. How do you plan to train range?

  25. #25
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Quote Originally Posted by josh81193 View Post
    If you plan on turning this into a real pure, I suggest you save some attack xp and prayer xp for completing quests.
    The Pure with be PURE f2p; so no worries there.

    Quote Originally Posted by nosaj.421 View Post
    Great progress. Just one question. How do you plan to train range?
    Lots and Lots of iron arrows :P + Narcle's fighter
    --
    New UPDATE!
    Accounts slightly broke atm, so for a while I will do a little manual merching.




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

Page 1 of 3 123 LastLast

Thread Information

Users Browsing this Thread

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

Posting Permissions

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