Healing potions on hud
Posted: Sun Mar 09, 2008 1:30 pm
I have the following code in my mq2 hud so it displays the reuse timer of healing potions.
I carry XIII potions as well as lower potions, if i run out of XIII potions, the timer is no longer displayed, is there a way to put a variable in for the XIII so that it will reconize any Distillate of Celestial Healing potions and not just the XIII potions ?
Code: Select all
//Healing potion
HealPotionText=3,52,295,255,234,8,${If[${FindItem[=Distillate of Celestial Healing XIII].ID},Healing Potion ...,]}
HealPotionReadyText= 3,140,295,0,255,0,${If[${FindItem[=Distillate of Celestial Healing XIII].ID},${If[${FindItem[=Distillate of Celestial Healing XIII].Timer},,Ready]},]}
HealPotionNotReady=3,140,295,455,0,0,${If[${FindItem[=Distillate of Celestial Healing XIII].ID},${If[${FindItem[=Distillate of Celestial Healing XIII].Timer},${FindItem[=Distillate of Celestial Healing XIII].Timer.TimeHMS},]},]}