Actor health
From Cobalt Wiki
More actions
| Actor.health | ||
| This Property represents the health of a given Actor, however it should be noted that it is not possible to directly kill an actor by setting health to 0, but only possible to make him invincible by setting it to a high value. | ||
| Returns | ||
| Health as an integer. |
local chosenActor = API.getPlayerActor()-- Use the modding API to get the player Actor chosenActor.health = chosenActor.health + 10000 -- Give him lots of health.