Poll: What would you like to see next? (post your ideas)

Be advised that this is a public poll: other users can see the choice(s) you selected.

Page 8 of 27 FirstFirst ... 67891018 ... LastLast
Results 176 to 200 of 674

Thread: Teh's Superheater

  1. #176
    Join Date
    Nov 2011
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I get this error around every 30 minutes

    The following DTMs were not freed: [7]

  2. #177
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by Matthijsd View Post
    I get this error around every 30 minutes

    The following DTMs were not freed: [7]
    what are you smithing? where?

  3. #178
    Join Date
    Nov 2011
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Mithril, varrock west bank

  4. #179
    Join Date
    Feb 2012
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    v1.8 is running really well.... But one problem is with withdrawing the coal. Every once in a while it misclicks the coal and doesn't withdraw any so I end up superheating iron bars. The mouse seems to be going down to withdraw all or all but one but moves really fast and seems to overshoot it. Other than that it looks faster than ever =) will continue to use 1.7 for now though

  5. #180
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by nickkg175 View Post
    v1.8 is running really well.... But one problem is with withdrawing the coal. Every once in a while it misclicks the coal and doesn't withdraw any so I end up superheating iron bars. The mouse seems to be going down to withdraw all or all but one but moves really fast and seems to overshoot it. Other than that it looks faster than ever =) will continue to use 1.7 for now though
    Interesting. Does it debug something like [.... uptext: al] ?

  6. #181
    Join Date
    Feb 2012
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry that was a hastey post I got up early to run it before heading off to a class; I should've waited to post something more helpfull. Yeah that's what the debug reads; this is what it says exactly

    "Found Item at Bank Slot 2.
    Found Incorrect Item, Moving to new Bank Spot.
    **Warning in WithdrawItem: Could not Find dtm in Bank. [Uptext: al"

    It works smoothly except does that every once in a while.

    Edit:

    With the antiban I noticed it tries to hover skill before the last superheat is finished. So when the superheat is done it goes back to the magic book; the total exp, next level, and exp til level don't have a chance to show up. I threw in a wait (500 + random(200)) at the start of the antiban procedure and it seemed to remedy that. Just a thought =)
    Last edited by nickkg175; 02-27-2012 at 08:49 PM.

  7. #182
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by nickkg175 View Post
    Sorry that was a hastey post I got up early to run it before heading off to a class; I should've waited to post something more helpfull. Yeah that's what the debug reads; this is what it says exactly

    "Found Item at Bank Slot 2.
    Found Incorrect Item, Moving to new Bank Spot.
    **Warning in WithdrawItem: Could not Find dtm in Bank. [Uptext: al"

    It works smoothly except does that every once in a while.
    Ahh that's just an uptext problem. Try changing all the "al"s to just "a" or just "l"

    Here's the part you'll want to change
    Simba Code:
    if (not invfull) then
      begin
        case CoalBag of

          'yes': begin case BarType of

            'steel': WithdrawItem(coal, 'dtm', 8, 'al', [3]);                                    {8}
            'mith' : WithdrawItem(coal, 'dtm', 14, 'al', [3]);                                        {14}
            'addy' : WithdrawItem(coal, 'dtm', 16, 'al', [3]);                                 {16}                 {coal}
            'rune' : WithdrawItem(coal, 'dtm', 14, 'al', [3]);                                    {14}

                       end;
                 end;

          'no': begin case BarType of

            'steel': WithdrawItem(coal, 'dtm', 0, 'al', [3]);                                  {all}
            'mith' : WithdrawItem(coal, 'dtm', 20, 'al', [3]);                                     {20}                 {coal}
            'addy' : WithdrawItem(coal, 'dtm', 18, 'al', [3]);                                      {18}
            'rune' : WithdrawItem(coal, 'dtm', 0, 'al', [3]);                                        {all}

                      end;
                end;
          end;

        Wait(400+Random(100));
        closebank;
      end;

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

    Default

    =-=-=-=-=-=-=-= Superheater by TehQ =-=-=-=-=-=-=
    Time Running: 1 Hours, 34 Minutes and 38 Seconds
    Bars Superheated: gold
    Magic XP Gained: 124497
    Magic XP/Hour: 78929
    Smithing XP Gained: 131544
    Smithing XP/Hour: 83396
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

    stopped manually.. have to go to practice. works very well thanks tehq

  9. #184
    Join Date
    Nov 2011
    Posts
    232
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Just a suggestion, when superheating, don't move the mouse to the first ore in the inventory when there's an ore that you can click without moving the mouse. Makes it less bot like (which actual player does that?) and should improve speed.

  10. #185
    Join Date
    Feb 2012
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks very much 'a' works very well, 'l' however does not =P

    Also be sure to look into my edit about the antiban plus ^ what texy said above does make a lot of sense too, only problem is you'd need to have a different procedure just for each ore and the spellbooks are different between member and non member.

  11. #186
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by nickkg175 View Post
    Thanks very much 'a' works very well, 'l' however does not =P

    Also be sure to look into my edit about the antiban plus ^ what texy said above does make a lot of sense too, only problem is you'd need to have a different procedure just for each ore and the spellbooks are different between member and non member.
    Quote Originally Posted by Texy View Post
    Just a suggestion, when superheating, don't move the mouse to the first ore in the inventory when there's an ore that you can click without moving the mouse. Makes it less bot like (which actual player does that?) and should improve speed.
    Just edit the main loop a little. If you move the antiban to after get ores then it should work well.



    For Texy's idea, i know a fairly easy way to do it. But, like you said, it wouldn't work the same for everyone. If you want to change it though you'll only need to add another variable and a repeat invmouse(5, leftclick) until the variable = 3 or 4 (depending upon coal bag) before each superheating procedure. You'd also have to change the inventory values for the rest of the ores. I don't think it looks that suspicious to cause this to need to be changed

  12. #187
    Join Date
    Dec 2011
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can anyone tell me if Superheat profits please? If so what ores to bars?

  13. #188
    Join Date
    Nov 2011
    Posts
    232
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by tehq View Post
    But, like you said, it wouldn't work the same for everyone. If you want to change it though you'll only need to add another variable and a repeat invmouse(5, leftclick) until the variable = 3 or 4 (depending upon coal bag) before each superheating procedure. You'd also have to change the inventory values for the rest of the ores. I don't think it looks that suspicious to cause this to need to be changed
    marpis's script does this, maybe looking into it might give you some inspiration?

    Quote Originally Posted by PeterGrayson View Post
    Can anyone tell me if Superheat profits please? If so what ores to bars?
    http://runescape.wikia.com/wiki/Calculators/Superheat

  14. #189
    Join Date
    Dec 2011
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It opens my bank, goes to withdraw the ores, doesn't, and then tries to Superheat nothing? Help?

  15. #190
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by PeterGrayson View Post
    It opens my bank, goes to withdraw the ores, doesn't, and then tries to Superheat nothing? Help?
    Any errors in the debug? What bars are you making?

    E:
    Quote Originally Posted by Texy View Post
    marpis's script does this, maybe looking into it might give you some inspiration?
    I know how to do this, i just posted exactly what you'd have to do.
    Last edited by tehq; 02-27-2012 at 11:33 PM.

  16. #191
    Join Date
    Dec 2011
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    =-=-=-=-=-=-=-= Superheater by TehQ =-=-=-=-=-=-=
    Time Running: 5 Minutes and 38 Seconds
    Inventories completed: 0
    Bars Superheated: iron
    Use Coalbag? no
    Magic XP Gained: 0
    Smithing XP Gained: 0

    Thats all it says and I'm in soul wars bank, iron and coal in my top left bank spaces, nature rune in the inv and the magic book set out like on the picture

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

    Default

    Quote Originally Posted by PeterGrayson View Post
    =-=-=-=-=-=-=-= Superheater by TehQ =-=-=-=-=-=-=
    Time Running: 5 Minutes and 38 Seconds
    Inventories completed: 0
    Bars Superheated: iron
    Use Coalbag? no
    Magic XP Gained: 0
    Smithing XP Gained: 0

    Thats all it says and I'm in soul wars bank, iron and coal in my top left bank spaces, nature rune in the inv and the magic book set out like on the picture
    Make sure runescape is set up how it should be (fixed screen size, min settings, max brightness)

  18. #193
    Join Date
    Dec 2011
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It already is :/

  19. #194
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by PeterGrayson View Post
    It already is :/
    I'll be adding a fix for this in just a second. I tried it and it didn't seem to work either.

    E: Added v9 and fixed many of these issues. Keep me informed with the problems and i'll continue to fix them
    Last edited by tehq; 02-28-2012 at 12:18 AM.

  20. #195
    Join Date
    Nov 2011
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Only bug i can see atm is that it fills 2x the coal bag (not withdrawing the coal 2x but clicking "Fill" 2x)

    Edit: Location: Vwb, Bar: Mithril bars

    Edit2: and when there is coal left in my inventory after it fills the bag it keeps clicking Fill, forever.

    Maybe you should add more failsafes in your script, example: if it doesnt withdraw the coal ores only the mith ores to superheat then it just stops
    Last edited by Matthijsd; 02-28-2012 at 01:22 PM.

  21. #196
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by Matthijsd View Post
    Only bug i can see atm is that it fills 2x the coal bag (not withdrawing the coal 2x but clicking "Fill" 2x)

    Edit2: and when there is coal left in my inventory after it fills the bag it keeps clicking Fill, forever.
    Make the wait a little longer. Why would there be coal in your inventory after you fill the bag I don't have a coal bag so i'm not sure how it works.

  22. #197
    Join Date
    Dec 2011
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Its still doing it, just clicks on the ore, does nothing and then tries to Superheat nothing:/

  23. #198
    Join Date
    Oct 2008
    Location
    behind you!
    Posts
    1,688
    Mentioned
    2 Post(s)
    Quoted
    40 Post(s)

    Default

    To everybody using this script, Please sell your bars at MED+ !!!
    Hi

  24. #199
    Join Date
    Oct 2007
    Location
    Chicago
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    stupid rs update lol..

  25. #200
    Join Date
    Jan 2009
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Tickyy View Post
    To everybody using this script, Please sell your bars at MED+ !!!

    Yeah prices are dropping drastically lets not make this mistake again

Page 8 of 27 FirstFirst ... 67891018 ... 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
  •