Page 2 of 4 FirstFirst 1234 LastLast
Results 26 to 50 of 81

Thread: GBodies 210k/h +

  1. #26
    Join Date
    Dec 2011
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ============================================
    We are running now for 1 Hours, 1 Minutes and 15 Seconds
    You have gained 219294 Crafting xp
    ============================================

  2. #27
    Join Date
    Jan 2012
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This script is bad. Not literally bad because it does get the job done, but it could use a few things;

    -Antiban, not hard to implement, just a few lines of code.
    -You could use DTM's to easily make this into AIO D'hide crafter. You'd just need the DTM's for each type of D'hides.

  3. #28
    Join Date
    Mar 2012
    Posts
    66
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by peetu View Post
    This script is bad. Not literally bad because it does get the job done, but it could use a few things;

    -Antiban, not hard to implement, just a few lines of code.
    -You could use DTM's to easily make this into AIO D'hide crafter. You'd just need the DTM's for each type of D'hides.
    I am not gonna add anti-ban because of 2 reasons:
    It will reduce the amount of exp a hour by atleast 30k. And i made this script for the objective ONLY, if you want to change anything then you do that.
    I am not gonna work with DTM's because i am a beginner scripter and that stuff is still too hard for me.

  4. #29
    Join Date
    Mar 2012
    Posts
    66
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by iGunXZ View Post
    Hey I've added more modifications to it, such as failsafes, you can potentially run this overnight. Added random checks (For SoF spin tickets). Etc. try it out. And oh no need for needles! (Have it in toolbelt) just start with thread in inventory, and have Green Dhides in the 1st slot in any tab in the bank.

    Cheers!

    Simba Code:
    program GBodies;
    {$DEFINE SMART}
    {$I SRL/SRL.simba}

    var
    x, y, Body, xp: Integer;

    procedure DeclarePlayers;
    Begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
      With Players[0] Do
      Begin
        Name        := 'xxx';     //name
        Pass        := 'xxx';     //password
        Nick        := 'xxx';     //nickname
        Pin         := 'xxx';     //pin (if you atleast have one, else leave it)
        Active      := True;
      end;
    end;
    //////////////////////No need for change below this line///////////////////////
    procedure Camera;
    begin
    setangle(0);
    Makecompass('N');
    end;
    procedure NormalCheck;
    begin
     if not LoggedIn then Exit;
     FindNormalRandoms;
    end;
    procedure Banking;
    begin
      begin
        repeat
          OpenBankChest(SRL_BANK_SW);
        until BankSCreen or PinScreen;
      end;

      if PinScreen then
      begin
        repeat
          InPin(Players[0].Pin);
        until BankScreen
      end;

    if BankScreen then
      begin
      Deposit(2,27, true);
      end;
      if invCount=1 then
      begin
      Withdraw(0, 0, 27);
      end;
      begin
      if BankScreen then
      CloseBank;
    end;
    end;

    procedure CraftAllTheBodies;
    var
    Time: integer;
    begin
    If InvFull then
    Wait(200 + Random(100));
    InvMouse(2, 1);
    wait(1000+randomrange(0,100));
    Mouse(150, 423, 10, 10, true);
    wait(650+randomrange(0,100));
    Mouse(150, 423, 10, 10, true);
    wait(100+randomrange(0,100));
    MarkTime(Time);
    While (TimeFromMark(Time) <= ((42*370))) do
    begin
        Wait(500+random(200));
        FindNormalRandoms;
    end;
    Body := Body+9;
    end;

    Procedure Exp;
    begin
    xp := Body*186;
    end;

    Procedure Progress;
    begin
    Exp;
    Writeln('============================================');
    Writeln('We are running now for '+TimeRunning+'');
    Writeln('You have gained '+inttostr(xp)+' Crafting xp');
    Writeln('============================================');
    end;

    procedure First;
    begin
      Smart_Server := 51;
      Smart_Members:= true;
      Smart_Signed := true;
      Smart_SuperDetail := false;
      SetupSRL;
      DeclarePlayers;
      LogInPlayer;
      Mousespeed := 15;
      wait(100+random(100));
      Body := 0;
    end;

    begin
    writeln('Start that shit up');
    First;
    writeln('Loadin that shit');
    Camera;
      repeat
      writeln('We gotta bank');
      Banking;
      Writeln('Makin the bodies');
      CraftAllTheBodies;
      NormalCheck;
      Writeln ('Checking for randoms');
      Progress;
      until not LoggedIn;
      Writeln('What happened? Please post it in the topic');
      Progress;
      TerminateScript;
    end.
    I've got a little question about your script. If you select for the first time doesn't it ask for a needle then?
    *Not saying that it can be easily fixed by doing this:

    Simba Code:
    procedure FirstNeedle;
    var
    Time: integer;
    begin
    If InvFull then
    Wait(200 + Random(100));
    InvMouse(2, 1);
    wait(1000+randomrange(0,100));
    Mouse(150, 423, 10, 10, true); //<<<< Edit this to the belonged position for the first needle
    wait(650+randomrange(0,100));
    Mouse(150, 423, 10, 10, true); //<<<< Edit this to the belonged position for the first needle
    wait(100+randomrange(0,100));
    MarkTime(Time);
    While (TimeFromMark(Time) <= ((42*370))) do
    begin
        Wait(500+random(200));
        FindNormalRandoms;
    end;
    Body := Body+9;
    end;
    And then put it here:
    Simba Code:
    begin
    writeln('Start that shit up');
    First;
    writeln('Loadin that shit');
    Camera;
    Banking;
    FirstNeedle;
      repeat
      writeln('We gotta bank');
      Banking;
      Writeln('Makin the bodies');
      CraftAllTheBodies;
      NormalCheck;
      Writeln ('Checking for randoms');
      Progress;
      until not LoggedIn;
      Writeln('What happened? Please post it in the topic');
      Progress;
      TerminateScript;
    end.

    Add that to the script and i think that the needle is fixed then.
    Last edited by MotorMouse; 07-09-2012 at 12:49 PM.

  5. #30
    Join Date
    Nov 2011
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    We don't need needle as it is in tool belt.

  6. #31
    Join Date
    Mar 2012
    Posts
    66
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by RuneDragon View Post
    We don't need needle as it is in tool belt.
    True, but for the first time as you craft it askes for which tool to select, and then it needs to select the needle. You can use the script from above to get the one without needle.

  7. #32
    Join Date
    Dec 2011
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by MotorMouse View Post
    I've got a little question about your script. If you select for the first time doesn't it ask for a needle then?
    *Not saying that it can be easily fixed by doing this:

    Simba Code:
    procedure FirstNeedle;
    var
    Time: integer;
    begin
    If InvFull then
    Wait(200 + Random(100));
    InvMouse(2, 1);
    wait(1000+randomrange(0,100));
    Mouse(150, 423, 10, 10, true); //<<<< Edit this to the belonged position for the first needle
    wait(650+randomrange(0,100));
    Mouse(150, 423, 10, 10, true); //<<<< Edit this to the belonged position for the first needle
    wait(100+randomrange(0,100));
    MarkTime(Time);
    While (TimeFromMark(Time) <= ((42*370))) do
    begin
        Wait(500+random(200));
        FindNormalRandoms;
    end;
    Body := Body+9;
    end;
    And then put it here:
    Simba Code:
    begin
    writeln('Start that shit up');
    First;
    writeln('Loadin that shit');
    Camera;
    Banking;
    FirstNeedle;
      repeat
      writeln('We gotta bank');
      Banking;
      Writeln('Makin the bodies');
      CraftAllTheBodies;
      NormalCheck;
      Writeln ('Checking for randoms');
      Progress;
      until not LoggedIn;
      Writeln('What happened? Please post it in the topic');
      Progress;
      TerminateScript;
    end.

    Add that to the script and i think that the needle is fixed then.
    Oh and no, just for the 1st time you have to manually select the needle when you left click the D hide. after that it goes straight to the make body, vamb, legs options.

  8. #33
    Join Date
    Dec 2011
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    And I've got it to run over 5 hours got 1.2M xp overnight

    You can add it to main post if you want to. I've just added a few snippets to your script.

  9. #34
    Join Date
    Nov 2011
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by iGunXZ View Post
    You can add it to main post if you want to. I've just added a few snippets to your script.
    Please post your modified script on pastebin.

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

    Default

    Quote Originally Posted by RuneDragon View Post
    Please post your modified script on pastebin.
    http://pastebin.com/raw.php?i=3Jydgniu

  11. #36
    Join Date
    Mar 2012
    Posts
    66
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by iGunXZ View Post
    Added it to the mainpost

  12. #37
    Join Date
    Jun 2012
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Welcome to Runescape.
    Successfully executed.
    [Hint] (7:1): Variable 'X' never used at line 6
    [Hint] (7:1): Variable 'Y' never used at line 6
    Compiled successfully in 656 ms.
    Start that shit up
    SRL Compiled in 0 msec
    SMART Initialized.
    Loaded: Server 51, Members: True, Signed: True, Super Detail: False.

  13. #38
    Join Date
    Jun 2012
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Doesnt do anything

  14. #39
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ^Scripts are broken atm
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  15. #40
    Join Date
    Feb 2012
    Location
    Ã…lesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    cant u update it ? make it work , i really need it hehe

  16. #41
    Join Date
    Mar 2012
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Why do you have the needle in your inventory? Its not needed...

  17. #42
    Join Date
    Mar 2012
    Posts
    66
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by rougarou View Post
    Why do you have the needle in your inventory? Its not needed...
    Else it uses a other technique which is unstable for me.
    @Thomas1116 I am not working on simba atm since i have java 7 and that gives me loads o problems.

  18. #43
    Join Date
    Mar 2012
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by MotorMouse View Post
    Else it uses a other technique which is unstable for me.
    @Thomas1116 I am not working on simba atm since i have java 7 and that gives me loads o problems.
    ok, just tried it out and its pretty stable, thanks great script!

  19. #44
    Join Date
    Jan 2012
    Location
    Texas.
    Posts
    771
    Mentioned
    4 Post(s)
    Quoted
    122 Post(s)

    Default

    Very nice script my friend, still needs some work but hey. It works

    Thanks, going to help me get 99 crafting. <3

  20. #45
    Join Date
    Sep 2012
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    "Object DTM Extension: Failed to grab remote extension.
    ODTM Updater Enabled!
    [Error] C:\Simba\Includes\srl/srl/misc/Smart.simba(46:19): Invalid number of parameters at line 45
    Compiling failed."

    Keep getting this problem for almost every script

  21. #46
    Join Date
    Sep 2012
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    "Object DTM Extension: Failed to grab remote extension.
    ODTM Updater Enabled!
    [Error] C:\Simba\Includes\srl/srl/misc/Smart.simba(46:19): Invalid number of parameters at line 45
    Compiling failed."

    Keep getting this problem for almost every script

  22. #47
    Join Date
    Jul 2012
    Location
    London
    Posts
    1,549
    Mentioned
    0 Post(s)
    Quoted
    86 Post(s)

    Default

    ============================================
    We are running now for 2 Hours, 1 Minutes and 43 Seconds
    You have gained 446958 Crafting xp
    ============================================

    best proggie so far thanks

  23. #48
    Join Date
    Sep 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    How do i make it craft other leathers?

  24. #49
    Join Date
    Mar 2012
    Location
    Australia
    Posts
    625
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by iloveemilycork View Post
    How do i make it craft other leathers?
    do you mean blue dragon or red etc, or do you mean make chaps/vambraces?

    It should make any coloured bodies, if you want to change what it makes from the leather, you would have to change this line(the bold bits)

    Mouse(150, 423, 10, 10, true);
    wait(400+randomrange(0,100));
    Mouse(150, 423, 10, 10, true);

    have to find where the point is where the mouse needs to go. I might get some dhides later and get the cords for you, but busy right now.
    Bored of playing rs, and bored of botting it, why am i here?

  25. #50
    Join Date
    Dec 2011
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [Error] C:\Users\Peter\Desktop\GBodies.simba(96:3): Unknown identifier 'Smart_Server' at line 95
    Compiling failed.

    Help?

Page 2 of 4 FirstFirst 1234 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
  •