Skip to main content

OnPlayerRecover

Usage​

  • Called when the player is about to recover from the 'wounded' state
  • Return a non-null value to override default behavior

Examples​

""
object OnPlayerRecover(BasePlayer player)
{
Puts("OnPlayerRecover works!");
return null;
}