Page 1 of 1

MH/OH weapon swap macro for ambush?

PostPosted: Thu Mar 12, 2015 12:49 pm
by etrayu
I've googled a bit and only found macros that would let me swap my weapons with weapons in my bags, but I just want to swap my current MH to my OH and then back again, is that possible?

Re: MH/OH weapon swap macro for ambush?

PostPosted: Thu Mar 12, 2015 1:23 pm
by Solmyr
Poke your class leader online, I've heard he has some magic macros stashed on his account ;).

Re: MH/OH weapon swap macro for ambush?

PostPosted: Fri Mar 13, 2015 6:04 am
by whissper
Code: Select all
/script PickupInventoryItem(17); PickupInventoryItem(16);


Switch weapons between main-hand and off-hand:
But notice! both weapons should be one-handed (i mean one-handed weapon marked with "main-hand" label won't be placed in off-hand slot)

P.S. the same function but more safe method:
Code: Select all
/script local a,b=CursorHasItem,PickupInventoryItem;if(not a())then CloseMerchant();b(17);if(a())then b(16);end end

Re: MH/OH weapon swap macro for ambush?

PostPosted: Fri Mar 13, 2015 11:52 am
by etrayu
Thanks, the macro works really well!

Re: MH/OH weapon swap macro for ambush?

PostPosted: Tue Mar 17, 2015 1:51 am
by captnamazing
Beautiful macro, far cleaner than my ghetto macros that switch to fishing pole, then to the weapons i want.