Log in

View Full Version : Condition Manager Invisible on/off



drabsolut
02-19-2016, 05:15 PM
Hey guys,

I wanted to ask if there is a possibility to turn the Invisbile Mode at Condition Manager on or off with a lable at a special waypoint.
My problem is, that I want to turn it on, when I am entering a spawn and turn it off when leaving, so that he is not casting utana vid immidiatly after leaving depot pz.
Would be thankfull for some solutions!

Greetings!

drabsolut
02-20-2016, 09:55 AM
No ideas guys?

Merre
02-20-2016, 02:38 PM
Make a new txt document in settings, rename it InvisibleON.xbst
Save it, open it and write


<panel name="Condition Manager">
<control name="PoisonCureLimit" value="6"/>
<control name="PoisonCureMana" value="20"/>
<control name="PoisonCureEnable" value="0"/>
<control name="DeathCureLimit" value="10"/>
<control name="DeathCureMana" value="40"/>
<control name="DeathCureEnable" value="0"/>
<control name="PhysicalCureLimit" value="5"/>
<control name="PhysicalCureMana" value="30"/>
<control name="PhysicalCureEnable" value="0"/>
<control name="FireCureLimit" value="20"/>
<control name="FireCureMana" value="30"/>
<control name="FireCureEnable" value="0"/>
<control name="EnergyCureLimit" value="15"/>
<control name="EnergyCureMana" value="30"/>
<control name="EnergyCureEnable" value="0"/>
<control name="ParaCureEnable" value="0"/>
<control name="ParaCureMana" value="50"/>
<control name="ParaCureSpell" value="Utani Hur"/>
<control name="HasteCastMana" value="50"/>
<control name="HasteCastSpell" value="Utani Hur"/>
<control name="HasteCastEnable" value="0"/>
<control name="InvisibleCastMana" value="50"/>
<control name="InvisibleCastEnable" value="1"/>
<control name="ShieldCastMana" value="50"/>
<control name="ShieldCastEnable" value="0"/>
<control name="RecoveryCastEnable" value="0"/>
<control name="RecoveryCastType" value="0"/>
<control name="RecoveryCastMana" value="75"/>
<control name="RecoveryCheckPzEnable" value="1"/>
</panel>

Now copy > paste this into a new file but change the "InvisibleCastEnable" to 0 and rename the file to InvisibleOFF.xbst


Save it and head to the Cavebots Settings file add two Lables where you want them to be at, say at StartHunt add a label named StartInvis and at LeaveHunt add a label named StopInvis.

Now open up your lua and where all the elseif (labelName == ***) are, add these two elseifs:


elseif (labelName == "StartInvis" then
loadSettings("InvisibleON", "Condition Manager")

elseif (labelName == "StopInvis") then
loadSettings("InvisibleOFF", "Condition Manager")

drabsolut
02-20-2016, 03:16 PM
Thank you! That was a big help!!! :)