Posts: 1
Threads: 1
Joined: May 2016
Reputation:
0
05-30-2016, 03:58 PM
Hello friends, I was in need of a macro that when he was no monster on the screen, equip the item 9396 in the left hand, and when he had a monster on the screen, equip the item 7403 in the left hand. I would be very grateful if someone manages to make a macro so.
Posts: 1,518
Threads: 151
Joined: Mar 2012
Reputation:
0
Try that:
[macro]1000 {Change Weapon} Creatures.NPCOnScreen()==0 [Else] Misc.ItemCountEx(9396)==1 Self.Equip.LeftHand(9396) Exit() {Else} Creatures.NPCOnScreen()>=1 Misc.ItemCountEx(7403) Self.Equip.LeftHand(7403) Exit()[/macro]