Este sitio hace uso intenso de JavaScript.
Por favor habilita JavaScript en tu navegador.
Disponible
RPP
12.0.5
RPP
12.0.1
Beta
2 of the same named weapons, equip with macro?
Regresar al índice de los foros
Publicado por
152824
This post was from a user who has deleted their account.
Publicado por
120885
This post was from a user who has deleted their account.
Publicado por
Drexxis
The most accurate way I can think to do this would be using container slot method instead of this. What weapon are you switching out to use the dual wield?
Publicado por
152824
This post was from a user who has deleted their account.
Publicado por
Drexxis
Give them their own designated slots then, I'm assuming you're going from dual wield to dual wield so you can try this.
This example is if the two weapons are in the 3rd and 4th slots of the Backpack.
/script PickupInventoryItem(16); PickupContainerItem(0,3); PickupInventoryItem(17); PickupContainerItem(0,4);
This will switch out the duel wielded weapons with the items in the slots, and will switch back to the initial weapons when pressed again. Keeping them in their specific slots. Since you're dual wielding, no item will take the slots where your weapons are because they will be filled.
Publicado por
acajonne
I was having the same problem equipping dual Colossal Skull-Clad Cleavers for my fury warrior, but I found a solution.
Initially I had +85 attack power on both but I had my guildmate change one of them to +50 attack power so that the following solution will work.
If they're enchanted differently, find out what their exact item id's are. Equip both and run this once:copy and paste the following line into your chat box in-game.
/run local function id(s) return string.match(GetInventoryItemLink("player",s) or "","(item:.+:%d+)") end ChatFrame1:AddMessage("MH:"..id(16).."\nOH:"..id(17))
It will display something like this :for duel wielding colossal skull-clad cleavers one with +85 attack power and the other with +50 attack power gave the following results. If you use identical enchants you will have the same problem as before.
MH=item:37852:3828:0:0:0:0:0:0
OH=item:37852:1606:0:0:0:0:0:0
Using those exact item id's you can tweak this macro to toggle 2h and the two same-named weapons:
/equipslot 16 item:37852:3828:0:0:0:0:0:0
/equipslot 17 item:37852:1606:0:0:0:0:0:0
enjoy(##RESPBREAK##)12##DELIM##MasterOfDisguise##DELIM##Please create your own thread for this rather than necro an old one.
Escribir respuesta
Este hilo está cerrado. No se puede escribir una respuesta.