Page 6 of 9 FirstFirst ... 45678 ... LastLast
Results 126 to 150 of 225

Thread: Ultimate Smelter

  1. #126
    Join Date
    Mar 2013
    Posts
    222
    Mentioned
    3 Post(s)
    Quoted
    143 Post(s)

    Default

    Quote Originally Posted by senrath View Post
    I have found what's causing the incorrect level up bug! You're calling your ProgressReport function (which contains the code to check for how much experience is needed for the next level) while the bank screen is still open. That means that the XPTillNextLevel function can't find the stats tab, so it exits and returns -1, hence the levels gained counter being incremented every load after a level is legitimately reached.
    this sounds like the issue, since the problem only occurs after i gain a level, up until which it progresses fine

  2. #127
    Join Date
    Mar 2007
    Location
    Mars, I thought all men were from Mars.
    Posts
    513
    Mentioned
    7 Post(s)
    Quoted
    124 Post(s)

    Default

    Quote Originally Posted by senrath View Post
    I have found what's causing the incorrect level up bug! You're calling your ProgressReport function (which contains the code to check for how much experience is needed for the next level) while the bank screen is still open. That means that the XPTillNextLevel function can't find the stats tab, so it exits and returns -1, hence the levels gained counter being incremented every load after a level is legitimately reached.
    OMFG, that's all I can say. Thx senrath. Wait a min.... I not sure this is it though. Because when I had RlagkRud send me his bug report the first XPTillLvl was taken when he first started the script. And it returned 600 something. Which was incorrect and outside bank screen. I can see how this would cause problems, though.

    Quote Originally Posted by RlagkRud View Post
    this sounds like the issue, since the problem only occurs after i gain a level, up until which it progresses fine
    You didn't tell me this, I thought it didn't work from the get go. You didn't say the 621 was incorrect but you aggreed. SO I assumed it was incorrect. Plus I though it highly unlikely you were so close to lvling at lvl 82.
    Code:
    [00:01:13]: Starting XP bar is: 772192
    [00:01:15]: StartingCrafting Current Level is: 82
    [00:01:15]: Amount of XP till net Level: 621
    [00:01:19]: SRL function didn't find a ticket, trying my way
    [00:01:19]: Going to Bank
    [00:01:19]: Going to bank
    See if the below fixes your problem.

    add this on line 767 in the progress report procedure like you see below ---> CloseBank;

    if (XPTillLvl - XP) < 0 then
    begin
    CloseBank;
    if (XpType = 'Smelt') then
    begin

    Will be added on next update. Let me know if it works.
    Last edited by bud_wis_er_420; 05-01-2013 at 08:42 PM.
    Not scripting for RS anymore, sorry. Banned too many times.
    MY SCRIPTS

  3. #128
    Join Date
    Mar 2013
    Posts
    222
    Mentioned
    3 Post(s)
    Quoted
    143 Post(s)

    Default

    Quote Originally Posted by bud_wis_er_420 View Post
    OMFG, that's all I can say. Thx senrath. Wait a min.... I not sure this is it though. Because when I had RlagkRud send me his bug report the first XPTillLvl was taken when he first started the script. And it returned 600 something. Which was incorrect and outside bank screen. I can see how this would cause problems, though.



    You didn't tell me this, I thought it didn't work from the get go. You didn't say the 621 was incorrect but you aggreed. SO I assumed it was incorrect. Plus I though it highly unlikely you were so close to lvling at lvl 82.
    Code:
    [00:01:13]: Starting XP bar is: 772192
    [00:01:15]: StartingCrafting Current Level is: 82
    [00:01:15]: Amount of XP till net Level: 621
    [00:01:19]: SRL function didn't find a ticket, trying my way
    [00:01:19]: Going to Bank
    [00:01:19]: Going to bank
    See if the below fixes your problem.

    add this on line 767 in the progress report procedure like you see below ---> CloseBank;

    if (XPTillLvl - XP) < 0 then
    begin
    CloseBank;
    if (XpType = 'Smelt') then
    begin

    Will be added on next update. Let me know if it works.
    Oh maybe i should have mentioned that hahaha. Yea i actually was that close to a level. luckily, im close to another level right now too so ill let you know if it works!

    Quote Originally Posted by senrath View Post
    I have found what's causing the incorrect level up bug! You're calling your ProgressReport function (which contains the code to check for how much experience is needed for the next level) while the bank screen is still open. That means that the XPTillNextLevel function can't find the stats tab, so it exits and returns -1, hence the levels gained counter being incremented every load after a level is legitimately reached.
    guess youre a senior srl for a reason huh ;-)

    [EDIT]
    well that did it! level up and its progging smoothly.
    thanks to senrath! (and bud, of course ;-) )
    Last edited by RlagkRud; 05-01-2013 at 09:32 PM.

  4. #129
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    Glad I could help, since I plan on abusing this script to get my crafting up.

  5. #130
    Join Date
    Mar 2013
    Posts
    222
    Mentioned
    3 Post(s)
    Quoted
    143 Post(s)

    Default

    sigh im getting an error now
    im pretty sure this has an easy fix but i have no simba knowledge yet

    Code:
    Starting XP bar is: 2098079
    Items Needed list:
    1: GoldBar
    Loading info: GoldBar
    Loading Location: Edgeville
    StartingCrafting Current Level is: -1
    Amount of XP till net Level: -1
    SRL function didn't find a ticket, trying my way
    Going to Bank
    Going to bank
    Already inside bank
    Withdrawing 28 GoldBar
    GoldBar Not stored yet
    Item color: 1944280
    Did't find any matching Bmp's on whole bank screen
    Checking TPA's for Item
    Did't find Item on whole bank screen, trying single slot checker
    Found matching Bmp in slot 10
    Item found using single slot checker
    Error: Out Of Range at line 1815
    The following DTMs were not freed: [SRL - Lamp bitmap, 1, GoldBar.Dtm]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap, SRL - NavBar Bitmap, SRL - Options Bitmap, 5, GoldBar.Bmp]
    okay i just restarted smart and it works now.
    im curious as to why this happens thou
    Last edited by RlagkRud; 05-01-2013 at 11:47 PM.

  6. #131
    Join Date
    Mar 2007
    Location
    Mars, I thought all men were from Mars.
    Posts
    513
    Mentioned
    7 Post(s)
    Quoted
    124 Post(s)

    Default

    Quote Originally Posted by RlagkRud View Post
    sigh im getting an error now
    im pretty sure this has an easy fix but i have no simba knowledge yet

    Code:
    Starting XP bar is: 2098079
    Items Needed list:
    1: GoldBar
    Loading info: GoldBar
    Loading Location: Edgeville
    StartingCrafting Current Level is: -1
    Amount of XP till net Level: -1
    SRL function didn't find a ticket, trying my way
    Going to Bank
    Going to bank
    Already inside bank
    Withdrawing 28 GoldBar
    GoldBar Not stored yet
    Item color: 1944280
    Did't find any matching Bmp's on whole bank screen
    Checking TPA's for Item
    Did't find Item on whole bank screen, trying single slot checker
    Found matching Bmp in slot 10
    Item found using single slot checker
    Error: Out Of Range at line 1815
    The following DTMs were not freed: [SRL - Lamp bitmap, 1, GoldBar.Dtm]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap, SRL - NavBar Bitmap, SRL - Options Bitmap, 5, GoldBar.Bmp]
    okay i just restarted smart and it works now.
    im curious as to why this happens thou
    No, it WAS a bug in the failsafe single slot checker. Fixed in ver 2.3. Updating now.
    Not scripting for RS anymore, sorry. Banned too many times.
    MY SCRIPTS

  7. #132
    Join Date
    Mar 2013
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    30 Post(s)

    Default

    Hey im getting a bug while using a pack yak. It keeps on clicking on open pet interface which takes you to avatar customization screen and all that. here is what i keep getting
    Withdrawing coal for Follower
    CoalOre Not stored yet
    Item color: 1646625
    Checking TPA's for Item
    Item found with Bmp on whole Bank screen
    Found item in 3
    Found CoalOre with Bmp
    CoalOre stored in bank slot 3
    Withdrawing CoalOre from slot 3
    Withdraw options found
    FoundOption 'Withdraw-All Coal' at slot 5
    Withdrawed item
    Didn't summon follower aftering clicking
    Failed at Opening follower Inv
    Withdrawing coal for Coal Bag
    Welcome to Runescape.
    Failed at getting item from bank
    Banking Failed, Shutting Down
    Ending Script
    Successfully executed.
    The following DTMs were not freed: [AdamantOre.Dtm, CoalOre.Dtm, 4, PackYak.Dtm]
    The following bitmaps were not freed: [AdamantOre.Bmp, CoalOre.Bmp, 8, PackYak.Bmp]

    Edit: nm, watched your video and saw that my left click was set to take bob rather than interact. Maybe you should write it next to summoning that we should set left click option to interact. Also, i saw a bug with my pak yack. it withdraws 27, stores them in yak, but there are 3 more inventory slots left in the yak, but it then proceeds to withdraw coal, put in coal bag, withdraw 12 addy ores and the rest of fill with coal, but since there are 3 coal missing in the yak, it only smelts 11 rather than 12. Could you please do something about this??? like it withdraws 27, stores in yak, withdraw 3, stores in yak, THEN, proceeds to withdraw 27 again, store in coal bag, withdraw 12 addy ore, then the rest coal, and then goes to furnace??? I noticed the major speed increase, thank you .
    Another Edit: I have noticed it stops after 7 addy ores because it runs out of it from coal bag as well as inventory. What my suggestion would be is to set the left click option to take bob, and once there are only 6 ores left on inventory, it clicks on take BoB to continue the smithing process rather than stopping and restarting the bars again. Like it can find interact like it finds call follower so that the left click option is take bob?? just suggestions
    Last edited by prabhsun; 05-02-2013 at 04:56 AM.

  8. #133
    Join Date
    Mar 2007
    Location
    Mars, I thought all men were from Mars.
    Posts
    513
    Mentioned
    7 Post(s)
    Quoted
    124 Post(s)

    Default

    Quote Originally Posted by prabhsun View Post
    Hey im getting a bug while using a pack yak. It keeps on clicking on open pet interface which takes you to avatar customization screen and all that. here is what i keep getting
    Withdrawing coal for Follower
    CoalOre Not stored yet
    Item color: 1646625
    Checking TPA's for Item
    Item found with Bmp on whole Bank screen
    Found item in 3
    Found CoalOre with Bmp
    CoalOre stored in bank slot 3
    Withdrawing CoalOre from slot 3
    Withdraw options found
    FoundOption 'Withdraw-All Coal' at slot 5
    Withdrawed item
    Didn't summon follower aftering clicking
    Failed at Opening follower Inv
    Withdrawing coal for Coal Bag
    Welcome to Runescape.
    Failed at getting item from bank
    Banking Failed, Shutting Down
    Ending Script
    Successfully executed.
    The following DTMs were not freed: [AdamantOre.Dtm, CoalOre.Dtm, 4, PackYak.Dtm]
    The following bitmaps were not freed: [AdamantOre.Bmp, CoalOre.Bmp, 8, PackYak.Bmp]

    Edit: nm, watched your video and saw that my left click was set to take bob rather than interact. Maybe you should write it next to summoning that we should set left click option to interact. Also, i saw a bug with my pak yack. it withdraws 27, stores them in yak, but there are 3 more inventory slots left in the yak, but it then proceeds to withdraw coal, put in coal bag, withdraw 12 addy ores and the rest of fill with coal, but since there are 3 coal missing in the yak, it only smelts 11 rather than 12. Could you please do something about this??? like it withdraws 27, stores in yak, withdraw 3, stores in yak, THEN, proceeds to withdraw 27 again, store in coal bag, withdraw 12 addy ore, then the rest coal, and then goes to furnace??? I noticed the major speed increase, thank you .
    Another Edit: I have noticed it stops after 7 addy ores because it runs out of it from coal bag as well as inventory. What my suggestion would be is to set the left click option to take bob, and once there are only 6 ores left on inventory, it clicks on take BoB to continue the smithing process rather than stopping and restarting the bars again. Like it can find interact like it finds call follower so that the left click option is take bob?? just suggestions
    1: There is no left click option for the little summon Icon next to the minimap. It is suppose to use right click and it then searches for the correct option. I will double check this though.

    2: About the Bob; I didn't think about the 30. I need to tell it to do it twice. I will try to fix today.
    Not scripting for RS anymore, sorry. Banned too many times.
    MY SCRIPTS

  9. #134
    Join Date
    May 2012
    Posts
    130
    Mentioned
    0 Post(s)
    Quoted
    46 Post(s)

    Default

    -----Starting Progress Report-----
    Starting XP bar is: 41760603
    StartingSmelting Current Level is: 98
    Amount of XP till next Level: 375580
    XPBarTotal - StartingXP = 41760603
    Time Running: 5 Hours, 16 Minutes and 13 Seconds
    XP Per Hour = 70814
    Current Items used: 6641
    Amount of XP till next Level: 375580
    XPTillLvl - XP: 2356
    XPH = 70814
    XPTL = 119773
    ============= Bud's Ultimate Smelter ver 2.3 =============
    Smelting GoldBars in Edgeville
    Time Running: 5 Hours, 16 Minutes and 13 Seconds
    GoldBars Smelted: 6641 ---- Per/hr 1260
    TTL: 1 Minutes and 59 Seconds ---- Levels Gained: 0
    Smelting Exp Earned: 373224 ---- Exp/Hour: 70814
    SpinTickets Found: 0
    Summon is turned off
    Breaking is off
    ================================================== ========

    Heres a proggy

    awesome script

  10. #135
    Join Date
    May 2012
    Posts
    130
    Mentioned
    0 Post(s)
    Quoted
    46 Post(s)

    Default

    FINALLY!!!



    Thank you so much! will use it now to make 180k gold bracelets! :P
    Last edited by gunman82; 05-02-2013 at 01:54 PM.

  11. #136
    Join Date
    Mar 2013
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    30 Post(s)

    Default

    Quote Originally Posted by bud_wis_er_420 View Post
    1: There is no left click option for the little summon Icon next to the minimap. It is suppose to use right click and it then searches for the correct option. I will double check this though.

    2: About the Bob; I didn't think about the 30. I need to tell it to do it twice. I will try to fix today.
    Oh ok, so can you do this?? Like when it starts smelting, if there are only 6 coal ores left in the inventory, it right clicks on the summoning icon and clicks on take from BoB so that the smithing process can be continued rather than being interrupted and having to be restarted??? And thank you for looking at the PackYak thing.

  12. #137
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    I found an error in your FindTheFurnace function. If it gets into the last ditch rotate step, it can cause an out of range error. You have it looping from 0 to 4 over an array that only contains 4 elements.

  13. #138
    Join Date
    Mar 2007
    Location
    Mars, I thought all men were from Mars.
    Posts
    513
    Mentioned
    7 Post(s)
    Quoted
    124 Post(s)

    Default

    Quote Originally Posted by gunman82 View Post
    FINALLY!!!



    Thank you so much! will use it now to make 180k gold bracelets! :P
    Grads. Will add you to the 99 list

    Quote Originally Posted by prabhsun View Post
    Oh ok, so can you do this?? Like when it starts smelting, if there are only 6 coal ores left in the inventory, it right clicks on the summoning icon and clicks on take from BoB so that the smithing process can be continued rather than being interrupted and having to be restarted??? And thank you for looking at the PackYak thing.
    I didn't know it could be done this way. I thought withdrawing from Bob WOULD interrupt the smelting process. I will definitely look into this.

    Quote Originally Posted by senrath View Post
    I found an error in your FindTheFurnace function. If it gets into the last ditch rotate step, it can cause an out of range error. You have it looping from 0 to 4 over an array that only contains 4 elements.
    Thx, will fix.
    Not scripting for RS anymore, sorry. Banned too many times.
    MY SCRIPTS

  14. #139
    Join Date
    Mar 2013
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    30 Post(s)

    Default

    Quote Originally Posted by bud_wis_er_420 View Post
    Grads. Will add you to the 99 list



    I didn't know it could be done this way. I thought withdrawing from Bob WOULD interrupt the smelting process. I will definitely look into this.



    Thx, will fix.
    Its all gud, its exactly like when burying bones on the gilded altar. When you right click and take from BoB, it continues the process rather than interrupting it. This way it doesnt have to restart the smithing process everytie and just continues .

  15. #140
    Join Date
    Feb 2013
    Posts
    45
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    I've been having some trouble with this script. I can't get it to run in Edgeville. No matter what I do it can't find the bank, even if I stand in the same location as the video. I can get it to work in other locations though so nice work

  16. #141
    Join Date
    Mar 2013
    Posts
    222
    Mentioned
    3 Post(s)
    Quoted
    143 Post(s)

    Default

    Quote Originally Posted by freeplay View Post
    I've been having some trouble with this script. I can't get it to run in Edgeville. No matter what I do it can't find the bank, even if I stand in the same location as the video. I can get it to work in other locations though so nice work
    would you mind putting on debugging mode and posting the debug so bud can solve it?

  17. #142
    Join Date
    Feb 2013
    Posts
    45
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    Delete this
    Last edited by freeplay; 05-04-2013 at 05:48 AM.

  18. #143
    Join Date
    Feb 2013
    Posts
    45
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    Quote Originally Posted by RlagkRud View Post
    would you mind putting on debugging mode and posting the debug so bud can solve it?
    Ok, I recreated it to get rid of unrelated crashes.

    UltimateSmelterBug.txt
    TakePic - 04-05-13 [1].png
    TakePic - 04-05-13 [0].png
    Last edited by freeplay; 05-04-2013 at 05:43 AM.

  19. #144
    Join Date
    Mar 2007
    Location
    Mars, I thought all men were from Mars.
    Posts
    513
    Mentioned
    7 Post(s)
    Quoted
    124 Post(s)

    Default

    Quote Originally Posted by freeplay View Post
    Ok, I recreated it to get rid of unrelated crashes.

    UltimateSmelterBug.txt
    TakePic - 04-05-13 [1].png
    TakePic - 04-05-13 [0].png
    Not at Bank or Furnace, My Postion is: 4411, 2603
    These cords are way out side of where you are suppose to be. Are you sure you selected Edgeville for your location. If so, Somethings up with your SPS. Let me do a little testing and get back with you. I'm working on script today.

    Edit: Working fine for me. Try new ver and see what happens..
    Last edited by bud_wis_er_420; 05-06-2013 at 10:54 PM.
    Not scripting for RS anymore, sorry. Banned too many times.
    MY SCRIPTS

  20. #145
    Join Date
    Mar 2007
    Location
    Mars, I thought all men were from Mars.
    Posts
    513
    Mentioned
    7 Post(s)
    Quoted
    124 Post(s)

    Default

    Updated to ver 2.4
    Fixed all the bugs you all have reported. I think...
    Not scripting for RS anymore, sorry. Banned too many times.
    MY SCRIPTS

  21. #146
    Join Date
    Mar 2013
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    30 Post(s)

    Default

    Quote Originally Posted by bud_wis_er_420 View Post
    Updated to ver 2.4
    Fixed all the bugs you all have reported. I think...
    YAY Thanks. Here is a video of what i was talking about. http://www.youtube.com/watch?v=gT5Ut...ature=youtu.be

  22. #147
    Join Date
    Dec 2007
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    thanks for the great work !
    I tried to make bronze and iron bars and its only making 1 bar, then going back to bank, refill and then repeat the same issue.

    Mithrill Bars are working fine

  23. #148
    Join Date
    Mar 2013
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    30 Post(s)

    Default

    Uhh, im experiencing a bug. It keeps on world hopping for me for no reason even though i have set it to false. it logs in, clicks on bank acocunt, when it gets to bank pin, it proceeds to logout, log back in, and then ends.

  24. #149
    Join Date
    Mar 2007
    Location
    Mars, I thought all men were from Mars.
    Posts
    513
    Mentioned
    7 Post(s)
    Quoted
    124 Post(s)

    Default

    Quote Originally Posted by prabhsun View Post
    Uhh, im experiencing a bug. It keeps on world hopping for me for no reason even though i have set it to false. it logs in, clicks on bank acocunt, when it gets to bank pin, it proceeds to logout, log back in, and then ends.
    Can you post your settings and the debug log. I'm not getting that problem on anything I tried.

    Quote Originally Posted by UnReaL69 View Post
    thanks for the great work !
    I tried to make bronze and iron bars and its only making 1 bar, then going back to bank, refill and then repeat the same issue.

    Mithrill Bars are working fine
    I'll look into it, but in the meantime, do you have the production window thing turned on. Looks like this..


    EDit:
    yes I check them both and they worked for me, so make sure your production window is turned on.

    If it is turned on then get me a bug report.
    Last edited by bud_wis_er_420; 05-07-2013 at 12:05 AM.
    Not scripting for RS anymore, sorry. Banned too many times.
    MY SCRIPTS

  25. #150
    Join Date
    Dec 2007
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    well yes it makes sense, I didn't had the production window activated on that acc and the mithril bars was doing on other acc

    Sry for my noobish, didn't know what production window was until now

Page 6 of 9 FirstFirst ... 45678 ... 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
  •