Smelt creation whit bs

Silex

Apprentice
Hey guys i started training blackamith and i would like to know if there any tricks to know to help me smelt my creation to get back my mats. Or i need to smelt them one by one verry slowly... thanks you all
 

halv

Grandmaster
Make a macro for instantly smelting your work after crafting it.
Record the creation with your client (Razor/steam) and directly smelt your work after crafting it. Change all target to "target by type", put in some delays and keep looping it.

In Razor it's looking like this (check out C:\Users\USER\AppData\Roaming\Razor\Macros depending on your usernames and harddrive for macro text files - open it with some editor):
!Loop
Assistant.Macros.DoubleClickTypeAction|4027|True <- double click on tongs
Assistant.Macros.WaitForGumpAction|949095101|False|300
Assistant.Macros.GumpResponseAction|21|0|0 <- make last gump
Assistant.Macros.PauseAction|00:00:02
Assistant.Macros.IfAction|4|0|slayer <- if it's a slayer
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.DoubleClickAction|3873|400 <- jump of your beelte
Assistant.Macros.LiftTypeAction|5040|1 <- to lift up your crafted item (this is an axe)
Assistant.Macros.DropAction|0x1374E6|(-1, -1, 0)|0 <- drop item to beetle (a delay is needed at slow connections)
Assistant.Macros.DoubleClickAction|1275110|791 <- jump back on your beetle
Assistant.Macros.PauseAction|00:00:01.2000000
Assistant.Macros.EndIfAction
Assistant.Macros.DoubleClickTypeAction|4027|True <- double click on tongs
Assistant.Macros.WaitForGumpAction|949095101|False|300
Assistant.Macros.GumpResponseAction|14|0|0 <- clicking the smelt gump
Assistant.Macros.WaitForTargetAction|30
Assistant.Macros.TargetTypeAction|False|5040 <- target your item just after crafting (here an axe)
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.IfAction|4|0|no item
Assistant.Macros.AbsoluteTargetAction|0|0|1076104995|115|66|0|3646
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.EndIfAction

The last lines only click on your backpack. Because if your axe was a slayer it is in the beelte now and can't get smelt anymore. You will have a target cursor without clicking something.

Steam is very similar but more flexible.

Good luck!
 
Top