![]() |
Macro SSA on HP and MANA Based --> HELP - Printable Version +- BBot - The best bot of the world (https://forums.bmega.net) +-- Forum: Scripts & Macros (https://forums.bmega.net/forum-4.html) +--- Forum: Requests (https://forums.bmega.net/forum-17.html) +--- Thread: Macro SSA on HP and MANA Based --> HELP (/thread-15462.html) |
Macro SSA on HP and MANA Based --> HELP - Rihop - 07-09-2014 i need help im lookin for a macro that automatic eq ssa when below like 2000 hp or 2000 mana i found som on hp based that works but not on mana and hp 100 {Auto MIGHT RING} healthEquip:=30 healthUnequip:=80 itemEquipID:=3048 Self.Health%()<=!healthEquip! [else] Self.Inventory.Ring()<>!itemEquipID! Self.Equip.Ring(!itemEquipID!) Exit() {else} Self.Health%()>=!healthUnequip! Self.UnEquip.Ring(0) but i also want that macro for use ssa when also is under % of mana som1 can help me with this? RE: Macro SSA on HP and MANA Based --> HELP - Rihop - 07-09-2014 BUMPPP RE: Macro SSA on HP and MANA Based --> HELP - erleo - 07-09-2014 Quote:500 {Auto Mightring} HPon:=2800 HPoff:=3040 Self.Health()<=!HPon! [OnMana] Self.Inventory.Ring()<>3048 Misc.ItemCountEx(3048)>0 Status.ManaShield()==0 Self.Equip.Ring(3048) Exit() {OnMana} Self.Health()>=!HPoff! Self.Inventory.Ring()==3048 Self.UnEquip.Ring(0) Exit() RE: Macro SSA on HP and MANA Based --> HELP - gogol13 - 07-10-2014 (07-09-2014, 01:36 PM)Rihop Wrote: i need help im lookin for a macro that automatic eq ssa when below like 2000 hp or 2000 mana PHP Code: 15 {SSA gogol13 macro} Self.Health()<=2000 [ELSE] Self.Equip.Amulet(3081) Exit() {ELSE} Self.Mana()<=2000 Self.Equip.Amulet(3081) Exit() try this i test it but didnt have 100% right ![]() RE: Macro SSA on HP and MANA Based --> HELP - Rihop - 07-10-2014 (07-10-2014, 04:57 PM)gogol13 Wrote:(07-09-2014, 01:36 PM)Rihop Wrote: i need help im lookin for a macro that automatic eq ssa when below like 2000 hp or 2000 mana well this seems to work but the problem is once he eq the ssa or mightring he wont take it off then also dont work manuel i most close the bot then can u edit function turn off ring/ssa when more then ~~~~ mana/hp? (07-09-2014, 10:38 PM)erleo Wrote:Quote:500 {Auto Mightring} HPon:=2800 HPoff:=3040 Self.Health()<=!HPon! [OnMana] Self.Inventory.Ring()<>3048 Misc.ItemCountEx(3048)>0 Status.ManaShield()==0 Self.Equip.Ring(3048) Exit() {OnMana} Self.Health()>=!HPoff! Self.Inventory.Ring()==3048 Self.UnEquip.Ring(0) Exit() this dont work @ all xD i need macro for eq ssa or might ring when i have like 2000 hp or mana and when its 2500 mana or hp unequip the ring but mana and hp in same macro RE: Macro SSA on HP and MANA Based --> HELP - gogol13 - 07-10-2014 (07-10-2014, 06:59 PM)Rihop Wrote:(07-10-2014, 04:57 PM)gogol13 Wrote:(07-09-2014, 01:36 PM)Rihop Wrote: i need help im lookin for a macro that automatic eq ssa when below like 2000 hp or 2000 mana I made a script for setting as needed. next time you write precisely what you need. soo that macro take off all amulet from talisman slot. if you have shot/fast action for Equip amulet PHP Code: 1 {SSA gogol13 macro} Self.Health()<=2000 [ELSE] Self.Equip.Amulet(3081) Exit() {ELSE} Self.Mana()<=2000 Self.Equip.Amulet(3081) Exit() PHP Code: 300 {take off ssa} Self.UnEquip.Ammo(0) and long macro to take off you can try this ![]() it's work well @edit when i have more time i can make one macro to both actions |