Scripting/Squirrel/Functions/Player.IsOnFire: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with " == Syntax == <pre>player.IsOnFire;</pre> == Example == <pre>if ( cmd == "playeronfire" ) { local plr = FindPlayer( text ); MessagePlayer(plr.IsOnFire+"",player); }</pre>")
(No difference)

Revision as of 12:14, 13 February 2016

Syntax

player.IsOnFire;

Example

if ( cmd == "playeronfire" )
{
local plr = FindPlayer( text );
MessagePlayer(plr.IsOnFire+"",player);
}