Need help with two new classes

drawthow

Active Member
I'm leveling a Monk and Necro. And having trouble with two spells.


Monk AA Combination you need to use three ca before this will activate Jab, Kick and punch. Tried setting up the three ca connected to Combination in the Pre-Cast but none of them would fire.


Necro LifeBurn how to set life burn to fire when and name is at a certain health %
 

Kannkor

Ogre
Combination - With the next patch (25), you can put it in your combat arts and it will use it when it's available. Which isn't ideal since it doesn't always do the order.

I've started a new tab, called Combinations, or Combos (Name isn't defined yet) for things just like this, or concealment chains etc.

Right now there is no way to have an offensive spell only cast at a certain %.
 

Kannkor

Ogre
Could he just edit one of the buttons on MCP to activate Lifeburn on his necro?
Sure can! Changing buttons the MCP is super super easy now.

Edit OgreMCPXML.xml

FInd the button you want to change.. such as..
<CommandButton Name="Button-Coercive-Shout" template='OgreMCPButton'>
<Text>Coe-Sht</Text>
<OnLeftClick>
relay all "Script[\${OgreBotScriptName}]:QueueCommand[Call CastFromUplink All \"Coercive Shout\"]"
</OnLeftClick>
</CommandButton>

Then simply change the "Coercive Shout" to what ever you want. I recommend you change the Name (Button-Coercive-Shout) and Text (Coe-Sht) for ease of reading in the future.

One thing to note: When I change that file it will overwrite the edits you made unless you do a .nopatch on the file, which then prevents you from getting updates made on that file.
 

mamrono

Active Member
I tried to change a butto to make my healer cast a death save on me but it didnt work :(.

<CommandButton Name="Button-DeathSave" template='OgreMCPButton'>
<Text>Dsave</Text>
<OnLeftClick>
relay all "Script[\${OgreBotScriptName}]:QueueCommand[Call CastFromUplink All \"Ancestral Savior\"]"
</OnLeftClick>
 
Top Bottom