Soft macro - Printable Version +- BBot - The best bot of the world (https://forums.bmega.net) +-- Forum: Support (https://forums.bmega.net/forum-6.html) +--- Forum: Support & Help (https://forums.bmega.net/forum-8.html) +--- Thread: Soft macro (/thread-1241.html) |
Soft macro - Vennek - 07-23-2011 I don't know how to write macro for soft boots im trying but i can't.Can somebody write how to do script to equip if xx mana and remove if xx mana @down but if i dont have second boots? Re: Soft macro - drewindwalker - 07-23-2011 Vennek Wrote:I don't know how to write macro for soft boots im trying but i can't.Can somebody write how to do script to equip if xx mana and remove if xx mana You do it like this.. 8-) Code: 5000 {Softs} Self.Mana<X Self.Equip.Boots(Sb's id) Code: 5000 {Softs} Self.Mana>X Self.Equip.Boots(Boh id) Re: Soft macro - Paper Boy - 07-24-2011 Smart Soft boots User (Using %) Quote:1000 {Put Soft} Self.Mana%<x Self.Equip.Boots(6529) When MP % lower then X it will put soft 6529 = soft id EX: Code: 1000 {Put Soft} Self.Mana%<35 Self.Equip.Boots(6529) Put BOH if mana % > Then Y Quote:1000 {Put BOH} Self.Mana%>Y Self.Equip.Boots(3079) 3079 = BOH ID EX: Code: 1000 {Put BOH} Self.Mana%>85 Self.Equip.Boots(3079) IF you dont have BOH, use this macro: When MP % lower then X it will put soft 6529 = soft id Quote:1000 {Put Soft} Self.Mana%<x Self.Equip.Boots(6529) EX: Code: 1000 {Put Soft} Self.Mana%<35 Self.Equip.Boots(6529) When MP % higher then Y it will unequip your boots to container "W" (BP "W") Quote:1000 {Unequip Soft} Self.Mana%>Y Self.UnEquip.Boots(W) Warning: "W" IS THE NUMBER OF YOUR MAIN BACKPACK (YOUR SOFT WILL BE POSTED INSIDE THIS BACKPACK) EX: Code: 1000 {Unequip Soft} Self.Mana%>85 Self.UnEquip.Boots(1) Paper~ |