[Macro] Exevo Gran Mort - 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] Exevo Gran Mort (/thread-20810.html) |
[Macro] Exevo Gran Mort - meendreak - 12-31-2017 [Macro] Exevo Gran Mort Goodnite brothers, i'm looking for a macro that if has a ID: 25760 on backpack it will equip it on Left hand, and if has not equip normal rod/wand ID:16115 Please guys, i've searched and found nothing RE: [Macro] Exevo Gran Mort - Catar - 12-31-2017 Misc.ItemCountEx(25760)>=1 [rod] Self.Inventory.LeftHand()<>25760 Self.Equip.LeftHand(25760) exit() {rod} Self.Inventory.LeftHand()<>25760 Self.Inventory.LeftHand()<>16115 Self.Equip.LeftHand(16115) exit() RE: [Macro] Exevo Gran Mort - meendreak - 12-31-2017 (12-31-2017, 05:13 AM)Catar Wrote: Misc.ItemCountEx(25760)>=1 [rod] I tried but it keep using 16115, but if i manual put the 25760 on left hand it use it till the end and then equips 16115 RE: [Macro] Exevo Gran Mort - Catar - 12-31-2017 Make it manual, put 16115 in hand and 25760 in bp. And press debugging in the macro window. Copy paste here what shows BTW, are you sure ID of these items dont change when they in hand/backpack like rings do? RE: [Macro] Exevo Gran Mort - meendreak - 01-07-2018 first i've seen ur reply i'vent made. But now i just checked it again and now i see that when wand is equipped it changes id. Macro working tyy RE: [Macro] Exevo Gran Mort - Catar - 01-07-2018 so you had to change ID in one of these lines yes? Self.Inventory.LeftHand()<>25760 Self.Inventory.LeftHand()<>16115 |