Page 5 of 6 FirstFirst ... 3456 LastLast
Results 101 to 125 of 146

Thread: Paula's Chocolate Crusher. 180k/hr (members), 90k/hr (free to play)

  1. #101
    Join Date
    Apr 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It's funny how this didn't work for my simba 198 but when I downgraded it did work.
    Also nobody is selling chocolate bars is it already a dead trade?

  2. #102
    Join Date
    Mar 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Works like a charm, worked for 7 hours here i think it was around 15k choc's.
    Just awsome ! Thanks

  3. #103
    Join Date
    Nov 2011
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ANd thanks to drop the price of chocolate. Profit 10 gold per sell very nice guys

  4. #104
    Join Date
    Apr 2012
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [Hint] C:\Simba\Includes\SRL/SRL/core/mapwalk.simba(1353:3): Variable 'BOX' never used at line 1352
    [Error] (131:11): Duplicate identifier 'FREEDTMS' at line 130
    Compiling failed.

    Keep getting that error when I run the script, any idea what it means?

  5. #105
    Join Date
    Mar 2012
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by khizar View Post
    [Hint] C:\Simba\Includes\SRL/SRL/core/mapwalk.simba(1353:3): Variable 'BOX' never used at line 1352
    [Error] (131:11): Duplicate identifier 'FREEDTMS' at line 130
    Compiling failed.

    Keep getting that error when I run the script, any idea what it means?

    i also get the same

  6. #106
    Join Date
    Apr 2012
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    been using this but there really is no profit in it anymore

  7. #107
    Join Date
    Feb 2012
    Posts
    152
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    what a waste of time, profit is like 10gp lol you guys are desperate as

  8. #108
    Join Date
    Apr 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [Hint] C:\Simba\Includes\SRL/SRL/core/mapwalk.simba(1353:3): Variable 'BOX' never used at line 1352
    [Error] (131:11): Duplicate identifier 'FREEDTMS' at line 130
    Compiling failed.

    Getting this error,
    always

  9. #109
    Join Date
    Apr 2012
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ^ just as he said geting that freedtms error :/

  10. #110
    Join Date
    Feb 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Great script! The failsafes are a bit too repetitive though. For example:
    Simba Code:
    if FindDTM(chocbar, x, y, MIX1, MIY1, MIX2, MIY2) then
        begin
          Mouse(x, y, 7, 7, False)
        end else
          begin
          wait(1000);
          WriteLn('Could not find Chocolate Bar (invalid DTM). Trying again...');
          if FindDTM(chocbar, x, y, MIX1, MIY1, MIX2, MIY2) then
            begin
              Mouse(x, y, 7, 7, False)
            end else
              begin
              wait(1000);
              WriteLn('Could not find Chocolate Bar (invalid DTM). Trying again...');
              if FindDTM(chocbar, x, y, MIX1, MIY1, MIX2, MIY2) then
                begin
                  Mouse(x, y, 7, 7, False)
                end else
                  begin
                  wait(1000);
                  WriteLn('Could not find Chocolate Bar (invalid DTM). Trying again...');
                  if FindDTM(chocbar, x, y, MIX1, MIY1, MIX2, MIY2) then
                    Mouse(x, y, 7, 7, False)
                  end;
              end;
          end;
    can be replaced with a loop like this:
    Simba Code:
    for i := 0 to 3 do
      begin
        if i > 0 then
        begin
          Wait(1000);
          WriteLn('Could not find Chocolate Bar (invalid DTM). Trying again...');
        end;
        if FindDTM(chocbar, x, y, MIX1, MIY1, MIX2, MIY2) then
        begin
          Mouse(x, y, 7, 7, False);
          Break;
        end;
      end;
    And to perform antiban while crushing, just replace this:
    Simba Code:
    WriteLn('Crushing Chocolate Bars');
        Wait(RandomRange(1500, 4000));
        Antiban;
        AntiRandoms;
        Case (Players[currentplayer].Booleans[0]) of
          true: Wait(14000 + Random(2000));
          false: Wait(29000 + Random(2000));
        end;
    with this:
    Simba Code:
    WriteLn('Crushing Chocolate Bars');
      MarkTime(t);
      AntiRandoms;
      if Players[currentplayer].Booleans[0] then
        while TimeFromMark(t) < 7000 do
          Antiban
      else
        while TimeFromMark(t) < 22000 do
          Antiban;
      if Players[currentplayer].Booleans[0] then
        while TimeFromMark(t) < 17000 do
          Wait(RandomRange(50, 200))
      else
        while TimeFromMark(t) < 32000 do
          Wait(RandomRange(50, 200));
    Anyway, good work!
    Last edited by Ashley; 05-04-2012 at 03:50 PM.

  11. #111
    Join Date
    Jun 2007
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for the script works perfectly for me after i edited it a little bit!
    Since it died prices have once more risen and its working better than ever bringing me in 189k /hour
    Thanks,

    Hodsi1

  12. #112
    Join Date
    Feb 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by hodsi1 View Post
    Thanks for the script works perfectly for me after i edited it a little bit!
    Since it died prices have once more risen and its working better than ever bringing me in 189k /hour
    Thanks,

    Hodsi1
    Nope as far as I know the price of chocolate bars are going up again after I've bought 50k for 100gp each

  13. #113
    Join Date
    Jun 2007
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Ashley View Post
    Nope as far as I know the price of chocolate bars are going up again after I've bought 50k for 100gp each
    how did you manage that :O I just started this account so only getting a few at a time worked up from 200 a time to 1400 a time now for 250 each

    lucky guy :P

  14. #114
    Join Date
    Feb 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by hodsi1 View Post
    how did you manage that :O I just started this account so only getting a few at a time worked up from 200 a time to 1400 a time now for 250 each

    lucky guy :P
    It's just from the grand exchange, but once I saw I got one for 100 gp I bought as much as I can Maybe a chocolate bar collecting botter just needed cash immediately So I practically made 7.5M off of him

  15. #115
    Join Date
    Feb 2012
    Location
    Lithuania
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Does anyone know how to fix that DTMs Error? that people above are getting..?
    - The bad news is time flies, but the good news is you're the pilot.

  16. #116
    Join Date
    Feb 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Does anyone know how to fix that DTMs Error? that people above are getting..?
    Learn to script

  17. #117
    Join Date
    Jun 2007
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Cinkupis View Post
    Does anyone know how to fix that DTMs Error? that people above are getting..?

    Quote Originally Posted by Ashley View Post

    ^This.

    And im guessing you just sold some of your dust ashley? Because mine have stopped selling. o.O

  18. #118
    Join Date
    Feb 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by hodsi1 View Post
    ^This.

    And im guessing you just sold some of your dust ashley? Because mine have stopped selling. o.O
    How much are you selling them for? Congrats on your first post ever in 5 years btw

  19. #119
    Join Date
    Dec 2011
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I temporarily quit Runescape, but I'm back now.
    I'll be fixing this script, and making more improvements to it very shortly. Expect an update on the 9th of May. (I was busy on the 7th, so I moved it to the 9th))

    To fix the "FreeDTMs" problem, simply rename the procedure "FreeDTMs" to something else such as FreDTMs.

    And @ Ashley, thanks for the suggestions. I'm still a newbie at scripting in pascal. I'm sure I'll get better with a bit of time.
    Last edited by Paula_Deen; 05-08-2012 at 06:56 AM.
    Paula Deen Scripting
    ~Because every script is better with butter!
    Scripts: Paula's Chocolate Crusher
    Upcoming Scrips: Paula's AIO Runespan (10% - Currently collecting colors. School is my current priority.)

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

    Default

    Interesting script, looks like I shall try it on my 10 other member accounts and be making 1800k/h with no requirements hopefully.

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

    Default

    Sorted the problems, gotta say after I knew how to get it working it works fine

    ///////////////////////By Paula Deen\\\\\\\\\\\\\\\\\\\\\\\\
    Run Time: 2 Minutes and 20 Seconds
    Total Loads: 2
    Chocolate Dust made: 56
    Total Profit made: 2800
    Breaks Taken: 0
    //////////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

    1 script run done me good, but just needs to run for a lot longer (y)
    Last edited by iHarry; 05-07-2012 at 09:13 PM.

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

    Default

    This looks great can't wait for the update!!!

  23. #123
    Join Date
    May 2012
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    first off, this is a great script. my only problem, as stated in your title, the upTexts are unstable. I've tried multiple times, just after ~5 minutes, it refuses to recognize the bars every time.

  24. #124
    Join Date
    May 2012
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [Hint] C:\Simba\Includes\SRL/SRL/core/animation.simba(257:3): Variable 'X' never used at line 256
    [Hint] C:\Simba\Includes\SRL/SRL/core/animation.simba(257:3): Variable 'Y' never used at line 256
    [Error] (131:11): Duplicate identifier 'FREEDTMS' at line 130
    Compiling failed.

    what is this?

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

    Default

    Thank you ! very good script ! Really nice for first script !
    Thannks alot again !

Page 5 of 6 FirstFirst ... 3456 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
  •