![]() |
|
#2
|
|||
|
|||
|
You can't set the health level, only read:
float Health { get; } Example Code Code:
AiPerson singlePlayer = GamePlay.gpPlayer() as AiPerson;
GamePlay.gpLogServer(null, "Person Health: {0}", new object[] { singlePlayer.Health });
|
|
|