Trying to make a "swarm pet key" for following toons: Necro, mage, BST

smith8454

Premium Member
Joined
Jun 24, 2009
Messages
734
Reaction score
105
Points
43
MMO community,

I am trying to make a swarm pet key for the following toons; Necro, Mag, BST
here Is what I want it to do:
1. cast epic for all (3) classes
2. cast swarm pets for all (3) classes
3. Use; Cloth cap, vicious rabbit, and amulet of xul

Below is the hotkey I started, but something is not right

hotkey for swarm pet
Line1 /bcga //useitem Deathwhisper //useitem magge epic //useitem Bst Epic
Line2 /timed 50 /bcga //multiline ; /alt act 207 ; /alt act 900 ; /alt act 981
Line3 /bcga /pause 60, //useitem 27 1 "cloth cap"
Line4 /bcga /pause 120, //useitem 27 2 "vicious Rabbit"
Line5 /bcga /pause 240, //useitem 27 3 "Amulet of Xul"

need a little help with this
 
  • Like
Reactions: EQDAB
/timed isn't a valid command unless used after /docommand. the /pause has to be the first part of the line and will be executed after the line it is on before doing the next line. The pauses are probably way to long. atm first line goes off, 5 seconds later the next line, 6 seconds later 2nd, etc. so 23 seconds that you cannot hit another hotkey from driving toon. overall probably better setting up something like mq2events and having things trigger off some phrase or maybe the use of the alt abilities. mage and bst epics are longer duration pet buffs so should probably use something else to keep them up. but try something like:

/pause 50, /bcga //multiline ; /useitem deathwhisper ; /useitem "Focus of Primal Elements" ; /useitem "Spiritcaller Totem of the Feral"
/pause 60, /bcga //multiline ; /alt act 207 ; /alt act 900 ; /alt act 981
/pause 60, /bcga //useitem "cloth cap"
/pause 60, /bcga //useitem "vicious rabbit
/bcga //useitem "amulet of xul"
 
  • Like
Reactions: EQDAB