Page 1 of 1
Weapon switch?
Posted: January 30th, 2005, 3:34 am
by tault_cbus
anyone know where i can find a macro to switch weapons in battle? like from my dagger to a sword?
Re: Weapon switch?
Posted: January 30th, 2005, 7:06 am
by carefoot
cbus wrote:anyone know where i can find a macro to switch weapons in battle? like from my dagger to a sword?
You cannot switch weapons in Battle.
Or it might be armor im not sure >.<
Posted: January 30th, 2005, 9:56 am
by tault_romapizza49
you can switch weapons, and not armor..
If you have cosmos , lookk in the Tackle box section.. there is a button you can click on that allows you to have a fishing rod, wepaon switch macro..
If automatically puts it in your other macros if you have any. I think the name of the macro will be called tacklebox or something like that..
Just read the script and see if you can foool around to have it swap weapons, instead of swapping the fishing pole and weapons back and forth,
Posted: January 30th, 2005, 5:07 pm
by tault_cbus
romapizza49 wrote:you can switch weapons, and not armor..
If you have cosmos , lookk in the Tackle box section.. there is a button you can click on that allows you to have a fishing rod, wepaon switch macro..
If automatically puts it in your other macros if you have any. I think the name of the macro will be called tacklebox or something like that..
Just read the script and see if you can foool around to have it swap weapons, instead of swapping the fishing pole and weapons back and forth,
they got rid of the tackle box like 4 patches ago because people were using it to bot didnt they?
Weapn Quick Swap is what you want
Posted: February 12th, 2005, 1:48 am
by tault_pheldan
Head out to Register to unlock hidden link and get "Weapon Quick Swap". It adds the command "WeaponSwap" to the in-game macro language.
From there you create your own macros (via /macro) to swap weapons. Perfectly legal and works for both Weapons & Shields. I use it on my warrior to switch between 1h&shield, 2h and dual-wield.
And yes you can swap armor during fights, too.
Posted: March 25th, 2005, 8:19 am
by tault_bertik
/script PickupContainerItem(4, 1);
/script -- 1H weapon now on cursor.
/script PickupInventoryItem(16);
/script -- 1H weapon now equipped, 2H weapon on cursor.
/script PickupContainerItem(4, 3);
/script -- 2H weapon in inventory, no item on cursor.
/script PickupContainerItem(4, 2);
/script -- offhand item on cursor.
/script PickupInventoryItem(17);
/script -- off hand item now equipped, no item on cursor.
Posted: March 25th, 2005, 8:20 am
by tault_bertik
/script PickupInventoryItem(17);
/script -- off hand item now on cursor.
/script PickupContainerItem(4, 2);
/script -- off hand item now in inventory
/script PickupContainerItem(4, 3);
/script -- 2H weapon now on cursor.
/script PickupInventoryItem(16);
/script -- 1H weapon now on cursor, 2H weapon equipped
/script PickupContainerItem(4, 1);
/script -- 1H weapon now in inventory, no item on cursor.
Posted: March 27th, 2005, 9:43 pm
by tault_figgot
If, and I'm guessing this because of 'dagger to sword', you are playing a rogue, you can switch from offhand to primary with this simple script:
/script PickupInventoryItem(17);
/script PickupInventoryItem(16);
Posted: April 3rd, 2005, 12:28 am
by tault_omegafatalis
bertik, could you tell us what that entire script exactly does?
Posted: April 12th, 2005, 10:05 am
by tault_bertik
It switches your weapons when your cursor is on them.