What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

autosmelt..

BPAlpha

New Member
Joined
Jan 15, 2010
Messages
594
Reaction score
41
working on a rewrite of highvolts autosmelt plugin.. got working great so far but cant seem to get it to cast smelting saronites..
here a small snipit of code for smelting any help would be great

Code:
while (NumOfItemsInBag(36912) > 1) // saronite ore
            {
                SpellManager.Cast(49258);
                //while (Me.Casting != 0) 
                Thread.Sleep(100);
            }
thanks alpha out :)
 
Try this mate.

Styx.Logic.Combat.WoWSpell smelt = Styx.Logic.Combat.WoWSpell.FromId(49258);
Logging.Write("Smelting Saronite.");
Styx.Logic.Combat.SpellManager.Cast(smelt);
 
credit to highvoltz for orignal write of plugin i just edited for HB2..
Will use mailbox for saronites, Smelt then vendor.. No Gbank function as new to coding..
I have not really tested mail function so may be buggy but smelt and vendor works great..
any bugs please post :)
hope this helps
 

Attachments

So, for me it stopped at: Activity: Getting Items From mailbox. And that's it, nothing more.
 
Last edited:
working on it as we speak :) trying to include mailing to alts as well :)
 
In Dalaran it says that there are no forges in area even if you place it directly next to it and stays at the mailbox :)

Would be nice if you could add this one
 
it opens mailbox and nothing happens.

log says:

[8:07:37 PM:201] Cleared POI
[8:07:37 PM:976] Activity: Getting Items from mailbox
[8:07:37 PM:999] interact: 0x256AA758
[8:07:38 PM:10] interact done: 0x256AA758

But it may be due to my "postal" addon.

then after it stood there w/ the mailbox open for a few mins, wow crashed. haha
 

Attachments

Last edited:
i think it needs a delay of one second or so from malbox opening to item collection (due to addons like beancounter that scan the whole mailbox).
 
May I ask - whats the good thing about melting the stuff?
 
any update on the addon?

would love it, and i'm willing to donate a little bit for a working autosmelter
 
Ore normally sells for about 50s more than I can get to vendor so I don't go through the hassle.
 
Back
Top