Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_DamagePhaseTitle.c
Go to the documentation of this file.
2{
3 override bool _WB_GetCustomTitle(BaseContainer source, out string title)
4 {
5 float health = 0;
6 source.Get("m_fPhaseHealth", health);
7 title = "Phase | HP: " + health.ToString();
8 return true;
9 }
10}