Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 67

Thread: ChaosBones - Picks and buries bones at the chaos temple

  1. #26
    Join Date
    Mar 2012
    Location
    Ca
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by mrbotter123 View Post
    Worth it? Worth what? The time? The money? It's free. Find another way to train pray you leech.
    With your low post count and recent join date im the leech? good one, almost made me laugh

  2. #27
    Join Date
    Mar 2013
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    I keep getting "[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
    Compiling failed."

    Code:
      Result := SmartSpawnClient(ReplaceWrap(PluginPath, '\', '/', [rfReplaceAll]), Params[0], ',' + Params[1], 765, 503, 's', '', '', -1);
    I can remember changing the - Params[1], 765, 503, 's', '', '', -1); to Params[1], 765, 553, 's', '', '', -1);

    After i set it back to 503, i reset the client then receive the following error:

    [Error] C:\Simba\Includes\SRL\SRL\misc\SmartParams.Simba(7 8:8): Unknown identifier 'RSReady' at line 77
    Compiling failed.

    Code:
    If RSReady then
    I have been tinkering around for a while now and I'm honestly stumped, I have gotten most of the other bots working, I'm sure its an easy fix an ill be face palming when found.. Any help would be appreciated

    Is it because i opened up the SMART08 client using another bot, then switched scripts?

    EDIT: Nevermind, found the fix
    Code:
    program chaosPrayerTrainer;
    {$DEFINE SMART}
    Changed define smart to define smart8 -.-!
    Last edited by ausaaz; 03-07-2013 at 07:46 AM.

  3. #28
    Join Date
    Feb 2012
    Location
    Sydney, Australia
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by drc1998 View Post
    The xp levels are higher I found if you bury the bones after it collects 12, not a full inventory.The xp levels are higher I found if you bury the bones after it collects 12, not a full inventory. Here's my edit to make it better (possibly).

    Simba Code:
    //-------------------------------//
    //          ChaosBones           //
    //             V1.0              //
    //           by Phury            //
    //-------------------------------//

    // Start script at the chaos alter in the wilderness
    // Make sure to check every now and then for random events!
    // Enter your user and pass below
    // And if script is failing to pick up any bones
    // Enter a custom bone color below too.
    // Enjoy the script.



    program chaosPrayerTrainer;
    {$DEFINE SMART8}
    {$I SRL/SRL.Simba}
    {$I SRL/SRL/Misc/Debug.Simba}
    {$I P07Include.Simba}

    var x,y,bonesFloor,bonesInv,xt,yt,buriedBones,boneCount : Integer;

    const

    // PLEASE ENTER YOUR USER AND PASS HERE
    playerUsername = '';
    playerPassword = '';


    // THE BRIGHTEST COLOR OF BONES ON THE GROUND
    // ONLY CHANGE IF SCRIPT DONT WORK
    boneGround = 14145500;




    runIsOn = 1777019;

    procedure setup;
    begin
    buriedBones := 0;
      bonesInv := DTMFromString('mQwAAAHicY2ZgYJjNxMCwAIgnA/FTIP8FED8G4uWzZwFJRoYNS5YwsAJZMMyIhIEAAG7VCG8=');
    end;




    procedure P07_DeclarePlayers;
    begin
      P07_PlayerName := playerUsername
      P07_PlayerPass := playerPassword;
    end;



    Procedure turnRunOn;   // Credit to blockay for this procedure
                            // blockay - [url]http://villavu.com/forum/member.php?u=114605[/url]
    begin
      if P07_LoggedIn then
        begin
          P07_MouseBox(665, 470, 686, 493, 3);
          Wait(RandomRange(400,500));
          ClickMouse2(Mouse_Left);
         If (Not FindColorTolerance(x,y,runIsOn,625,413,658,447, 4)) Then
          begin
            P07_Mousebox(625, 413, 658, 447, 3);
            Wait(RandomRange(200, 350));
            ClickMouse2(Mouse_Left);
            Wait(RandomRange(200, 350));
            P07_TabInventoryTab(4);
            //z := (z + 1);
          end
         else
          If FindColorTolerance(x,y,runIsOn,625,413,658,447, 4) Then
            begin
              P07_TabInventoryTab(4);
             // z := (z + 1);
            end;
        end;
    end;

    procedure checkLava;
    begin
    if FindColoredAreaTolerance(x,y,2481403,317,127,337,147,5,15) then
    begin
    wait(2000);
    Mouse(601,121,3,3,true);
    wait(8000);
    end;

    end;



    procedure tryAndTakeABone;
    begin
    if P07_FindObjCustom(x,y, ['ake'], [boneGround], 5) then
    begin

    Mmouse(x,y,1,1);
    sleep(400);
    if P07_IsUpTextMultiCustom(['ake']) then
    begin
    Mouse(x,y,1,1,true);
    boneCount := boneCount + 1;
    end;
    end;
    end;

    procedure showProggy;
    begin
    Writeln('--------------------------------------------------');
    Writeln('          ChaosBones 1.0 by Phury                 ');
    Writeln('--------------------------------------------------');
    Writeln('Bones buried: ' + intToStr(buriedBones));
    Writeln('Exp gained:   ' + intToStr(buriedBones*4));
    Writeln(' ');
    Writeln(' ');
    Writeln(' ');
    Writeln(' ');
    end;

    procedure buryAll;
    var repeatCounter :Integer;
    begin
    repeatCounter := 0;
    FindDTM(bonesInv,x,y,559, 214,726, 463);
    repeat
    Mouse(x,y,3,3,true);
    sleep(2000);
    repeatCounter := repeatCounter + 1;
    buriedBones := buriedBones + 1;
    showProggy;
    until(FindDTM(bonesInv,x,y,559, 214,726, 463) = false);
    turnRunOn;

    end;

    procedure boneReset;
    begin
    if boneCount <> 0 then
    boneCount := 0;
    end;

    begin
    P07_DeclarePlayers;
    SetUpSRL;
    SetupP07Include;

    setup;
    sleep(2000);

    if(not P07_LoggedIn) then
                begin
                  P07_LogInPlayer;
                  turnRunOn;
                  P07_MakeCameraAngleHigh;
                  P07_MakeCompassNorth;
                end;

    P07_MakeCompassNorth;
    P07_MakeCameraAngleHigh;
    Mouse(645,185,2,2,true);
    turnRunOn;
    repeat
         if(not P07_LoggedIn) then
                begin
                  P07_LogInPlayer;
                  turnRunOn;
                  P07_MakeCameraAngleHigh;
                  P07_MakeCompassNorth;
                end;

    sleep(2000);
    showProggy;
    tryAndTakeABone;
    checkLava;
    if boneCount > 11 then begin
    wait(2500);
    buryAll;
    boneReset;
    end;
    until(false)
    end.
    Thanks! I will include this on the next release and credit you


    Quote Originally Posted by ausaaz View Post
    I keep getting "[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
    Compiling failed."

    Code:
      Result := SmartSpawnClient(ReplaceWrap(PluginPath, '\', '/', [rfReplaceAll]), Params[0], ',' + Params[1], 765, 503, 's', '', '', -1);
    I can remember changing the - Params[1], 765, 503, 's', '', '', -1); to Params[1], 765, 553, 's', '', '', -1);

    After i set it back to 503, i reset the client then receive


    I can remember changing [Error] C:\Simba\Includes\SRL\SRL\misc\SmartParams.Simba(7 8:8): Unknown identifier 'RSReady' at line 77
    Compiling failed.

    Code:
    If RSReady then
    I have been tinkering around for a while now and im honestly stumped, I have gotten most of the other bots working, im sure its an easy fix an ill be face palming when found.. Any help would be appreciated

    Is it because i opened up the SMART08 client using another bot, then switched scripts?

    EDIT: Nevermind, found the fix [code]program chaosPrayerTrainer;
    {$DEFINE SMART}[code]

    Changed define smart to define smart8 -.-!
    Thanks for bringing this up! Didn't think about SMART8 users
    ------ My Scripts [2007] -------
    RatSmasher
    ChaosBones

  4. #29
    Join Date
    Mar 2013
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Not sure if a bug or not, sometimes the bot will click the "options" tab (i think to adjust the brightness to max?) but it wont go back to the "inventory" tab. Then it will proceed to pick up bones until inventory is full but wont recognize it as it will still be on the "options" menu.

    http://gyazo.com/3725fb27825c81fff167ec6ca6348c23
    Last edited by ausaaz; 03-07-2013 at 08:30 AM.

  5. #30
    Join Date
    Feb 2012
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    27 Post(s)

    Default

    Think this script has gradually just gotten worse... Somehow. Using it for smart and it can't even bury bones now, really weird. But the main bug still needs fixing which is where it gets stuck constantly after like an inventory of burying, stuck on tool bar and keeps trying to pick up even when full inv cause cant detect full inv. Gunna try browser now as oppose to smart see if it works at all.

  6. #31
    Join Date
    Feb 2013
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    umm For the smart version of the script you forgot to put 8 in {$DEFINE SMART8} which is giving people a lot of errors.

  7. #32
    Join Date
    Feb 2012
    Location
    Sydney, Australia
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Updated script taking into account all of your feedback. Thanks so much guys! Keep enjoying this script and don't hesitate to leave more feedback
    ------ My Scripts [2007] -------
    RatSmasher
    ChaosBones

  8. #33
    Join Date
    Apr 2012
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by pcelite11 View Post
    With your low post count and recent join date im the leech? good one, almost made me laugh
    Apart from the fact i can actually script and actually help out.

  9. #34
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    to be honest my xp rate would be 20x of what i get now with mouse recorder -_-

  10. #35
    Join Date
    Mar 2013
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Thank you very much for the script, I've run it for a couple hours now. I always babysit it (Luckily I have two monitors!) because there is no anti-random like most scripts at the moment.

    I just tried upgrading to 1.1 and it simply doesn't work well for me. It will click on bones to pick them up, but before clicking on the next one, it waits a while and moves the mouse around on the screen. Changed bone color and it still has the same problem. I just downgraded back to the old script for now!

  11. #36
    Join Date
    Feb 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    my guy just stands around, when the script starts it clicks my bag then does nothing

  12. #37
    Join Date
    Mar 2013
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by soulnigga View Post
    my guy just stands around, when the script starts it clicks my bag then does nothing
    You likely need to set the color for the bones. Perhaps change the DTM for the bones in the inventory as well (I did when I had runes in my inv).

  13. #38
    Join Date
    Mar 2013
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default



    All thanks to you! Getting pretty close to my level 43 goal (Going to do Holy Grail for the last 10k exp).

  14. #39
    Join Date
    Mar 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    im getting this error

    [Error] C:\Users\Todd\Downloads\Phury_ChaosBones_V1_1_BROW SER_AL.simba(33:1): Identifier expected at line 32
    Compiling failed.

    what can i do to fix it?

  15. #40
    Join Date
    Feb 2012
    Location
    Sydney, Australia
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by ThaPimpShrimp View Post


    All thanks to you! Getting pretty close to my level 43 goal (Going to do Holy Grail for the last 10k exp).
    Thanks for the progress report love seeing things like this!
    ------ My Scripts [2007] -------
    RatSmasher
    ChaosBones

  16. #41
    Join Date
    Jan 2012
    Location
    I live in awesomeness.
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    [Error] C:\Users\Aria\Downloads\Phury_ChaosBones_V1_1_SMAR T_AL (1).simba(166:19): Closing parenthesis expected at line 165
    Compiling failed.

    line 165: if(P07_LoggedIn := false) then
    help

  17. #42
    Join Date
    Mar 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    none of these damn scripts have worked so far for me.. ive done everything right in yohojo's guides. ive tested the scripts he said to in the guides and they've all worked, i have smart8 and everything. but yet no script has worked yet. #dissapointed

  18. #43
    Join Date
    Nov 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by tepovre View Post
    [Error] C:\Users\Aria\Downloads\Phury_ChaosBones_V1_1_SMAR T_AL (1).simba(166:19): Closing parenthesis expected at line 165
    Compiling failed.

    line 165: if(P07_LoggedIn := false) then
    help
    i get the same thing as this guy^

    not sure if that is part of antileech but i can not figure it out for the best of me
    Never Play Runescape Only Macro On It!!!!!

  19. #44
    Join Date
    Jan 2012
    Location
    I live in awesomeness.
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    cant figure out the anti leech :
    [Error] C:\Users\Aria\Downloads\Phury_ChaosBones_V1_1_SMAR T_AL (5).simba(166:19): Closing parenthesis expected at line 165
    Compiling failed.

    can someone tell me what to write at line 165 please?

  20. #45
    Join Date
    Feb 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Tried v1.0 and everything works fine for some reason 1.1 just wouldn't work even after I changed Color values multiple times.

  21. #46
    Join Date
    Mar 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by rs cheata View Post
    i get the same thing as this guy^

    not sure if that is part of antileech but i can not figure it out for the best of me
    lol you have been a member since 2007 and yet you do not know how to fix a simple anti-leech. sad

  22. #47
    Join Date
    Feb 2013
    Location
    Liverpool, England
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    So, V1.0 worked pretty perfectly, but when I'm using V1.1, RS doesn't even run. Running it in a browser and literally the game lags to a stop. Not a major problem as I'm just using 1.0 but might be a good thing to bring to your attention if this is a recurring problem.

  23. #48
    Join Date
    Nov 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by dill93 View Post
    lol you have been a member since 2007 and yet you do not know how to fix a simple anti-leech. sad
    haha no i fixed it.. I am not used to pastel i can code java/c++ but the error said something about parenthesis which wasn't the case
    Never Play Runescape Only Macro On It!!!!!

  24. #49
    Join Date
    Mar 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [Error] C:\Users\Jackson\Downloads\Phury_ChaosBones_V1_1_B ROWSER_AL.simba(165:19): Closing parenthesis expected at line 164
    Compiling failed.
    hmmmmmm

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

    Default

    Mine just stands there and does nothing?

Page 2 of 3 FirstFirst 123 LastLast

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
  •