Page 5 of 7 FirstFirst ... 34567 LastLast
Results 101 to 125 of 163

Thread: [R]yGuy's [A]mazing [P]ureGoldSmelter for [E]dgeville

  1. #101
    Join Date
    Jun 2011
    Location
    Anywhere that has WIFI
    Posts
    669
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by whattehfawk View Post
    Works a charm, im getting 1200 bracelets/h however, i just popped out for a couple hours and when i came back it was near the ge shortcut for some reason but can't really work out what it did :P probs lagged or something :P so can't post proggy cause its down to like 800 bracelets/h :P but also i had to slow down the timer on the withdrawal stage or remove the "if tried2 > 2 logout" thing as my laptop was lagging a little and so it was misclicking the first attempt and then withdrawing the second but the ores weren't showing up fast enough so it was closing bank and logging out, but deleting the failsafe when i had enough bars to keep going or slowing down the withdrawal mouse timer thing when i didn't have enough bars to keep going seemed to make this script work like a charm (for more laggy users)

    at line 703...

    if (Stuck > 1000)then
    begin
    WriteLn('We are stuck, logging out')
    Logout;
    TerminateScript;
    end;

    i had to put "1000" instead of "3" i think it was before? as it was killing itself after 3-4 invs for some reason? im running multiple scripts at once so might have been lagged out or something not sure :P

    thanks a lot for this script! will have korasi in no time!
    That was the longest run on sentence I've ever read! XD

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

    Default

    Quote Originally Posted by Jokester View Post
    That was the longest run on sentence I've ever read! XD
    haha i know right

  3. #103
    Join Date
    Feb 2012
    Location
    Denver, CO
    Posts
    863
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
    *RyGuys Edgeville Gold Smither Report
    *Time: 5 Hours, 46 Minutes and 28 Seconds
    *We have gained 361245 Smithing Experience! (62571 per hour)
    *We have smithed 6428 Gold Bars! (1113 per hour)
    *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~

    Here's the proggy that got me to 90 smithing. Thanks for the script, RyGuy. I really appreciate the work that you've done.

  4. #104
    Join Date
    Dec 2011
    Posts
    67
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you can put a paint in top for progress, it would beat all scripts out there !! Running it all night now, 8k to make and craft! Wish me luck!

  5. #105
    Join Date
    Dec 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default



    20k gold ore left till 99

  6. #106
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by Andres View Post
    *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
    *RyGuys Edgeville Gold Smither Report
    *Time: 5 Hours, 46 Minutes and 28 Seconds
    *We have gained 361245 Smithing Experience! (62571 per hour)
    *We have smithed 6428 Gold Bars! (1113 per hour)
    *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~

    Here's the proggy that got me to 90 smithing. Thanks for the script, RyGuy. I really appreciate the work that you've done.
    Congratz, and thank you for using my script!

    Quote Originally Posted by Killerftw View Post
    If you can put a paint in top for progress, it would beat all scripts out there !! Running it all night now, 8k to make and craft! Wish me luck!
    It doesn't need to look pretty :P just has to be functional

    Quote Originally Posted by jalaluddin View Post


    20k gold ore left till 99
    Good luck! Report back when you get it, i'll make a 99's achieved from this script on the OP

  7. #107
    Join Date
    Dec 2011
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice script; I use it with my clan citadel ring for over 100k xp/hr while it lasts. One easy suggestion: on line 227 (change the 28 to a 0):

    - Withdraw(0, 0, 28);
    +Withdraw(0, 0, 0);

    This makes the script use the "withdraw all" option instead of "withdraw-x" and manually typing in 28 each time. It's a little more humanlike and speeds the script up by a fraction.

    Anyway, thanks for the public scripts you've released! They are high quality and much appreciated.

  8. #108
    Join Date
    Dec 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    getting this error when trying to run: (Happened after i updated SRL)

    [Hint] C:\Simba\Includes\SRL/SRL/core/text.simba(684:3): Variable 'I' never used at line 683
    [Hint] C:\Simba\Includes\SRL/SRL/core/text.simba(684:3): Variable 'J' never used at line 683
    [Hint] C:\Simba\Includes\SRL/SRL/core/antirandoms\beekeeper.simba(194:3): Variable 'T' never used at line 193
    [Error] (136:30): Unknown identifier 'WaitNone' at line 135
    Compiling failed.

  9. #109
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    add this procedure before the error...

    Simba Code:
    procedure WaitNone()
    begin
    end;

    and it should work

  10. #110
    Join Date
    Dec 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you mean like this?

    begin
    if FindDTMRotated(WalkToBank, x, y, MMX1, MMY1, MMX2, MMY2, -Pi, Pi, Pi/30, aFound)then
    begin
    Mouse(x, y, 2, 2, True);
    MakeCompass('N');
    SetAngle(SRL_ANGLE_HIGH);
    Wait(1000 + random(50));
    procedure WaitNone()
    begin
    end;
    while (IsMoving) do (WaitNone);
    end;
    end;
    Cause that doesnt work

    Edit working now

    placed


    procedure WaitNone()
    ;begin
    end;

    above

    procedure RunToBank;
    Last edited by jalaluddin; 03-06-2012 at 06:22 PM.

  11. #111
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    yeah i meant above the procedure, glad you got it working!

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

    Default

    Quote Originally Posted by RyGuy View Post
    yeah i meant above the procedure, glad you got it working!
    Thx for the great support , 8000 ore left till 99

  13. #113
    Join Date
    Dec 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thx for this amazing and flawless script

    Just achieved 99 smithing



    Now going for 99 crafting (Got 450K gold bars )
    Last edited by jalaluddin; 03-07-2012 at 11:05 PM.

  14. #114
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    Congratz!!

  15. #115
    Join Date
    Dec 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by RyGuy View Post
    Congratz!!
    Thx! , just a suggestion mate,

    When crafting , shouldn't it be checking the crafting xp instead of the smithing xp? :P

    Edit
    After 5 min its just logs out (At furnace), happens everytime

    We are stuck, logging out
    Successfully executed.
    Last edited by jalaluddin; 03-08-2012 at 08:53 AM.

  16. #116
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by jalaluddin View Post
    Thx! , just a suggestion mate,

    When crafting , shouldn't it be checking the crafting xp instead of the smithing xp? :P

    Edit
    After 5 min its just logs out (At furnace), happens everytime
    It does do crafting... make sure the setup is set to 'craft' and not 'smithandcraft'

  17. #117
    Join Date
    Dec 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by RyGuy View Post
    It does do crafting... make sure the setup is set to 'craft' and not 'smithandcraft'
    yes i did that , but it crafts for 5 minutes then it gives that error

  18. #118
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    Does it run to the furnace and craft? or does it just run to the furnace?

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

    Default

    Quote Originally Posted by RyGuy View Post
    Does it run to the furnace and craft? or does it just run to the furnace?
    It does run to the furnace and it does craft, but after running 5 min , it just shuts down (At the furnace)

  20. #120
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    Remove the variable Stuck from line 484 and let me know if that helps.

  21. #121
    Join Date
    Dec 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by RyGuy View Post
    Remove the variable Stuck from line 484 and let me know if that helps.
    Works fine now , thx man , <3

  22. #122
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    Np

    Version 1.4 up with the fix

  23. #123
    Join Date
    Mar 2012
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey man, script works great except for one thing, i didn't pay it too much mind because it isn't really a big deal but it withdraws ore twice, both times typing in 28, and after about 5 mins or so of it smithing bars, it goes to withdraw and does the same thing, gets full inv first time, tries again but instead of running to the furnance again it just stops. this is the message i get:

    Failed to find Gold
    Successfully executed.
    The following DTMs were not freed: [2]

    EDIT: stopped some other programs to help it run a little more laggfree and it works perfectly.
    Last edited by hawkeye69; 03-11-2012 at 02:26 AM.

  24. #124
    Join Date
    Feb 2012
    Posts
    62
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [Error] (67:11): Duplicate identifier 'WAITNONE' at line 66
    Compiling failed.


    ?

  25. #125
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by shaggyster View Post
    [Error] (67:11): Duplicate identifier 'WAITNONE' at line 66
    Compiling failed.


    ?
    update your srl

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