Scripting/Squirrel/Functions/Player.Armour: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
(→Syntax) |
(→Syntax) |
||
Line 2: | Line 2: | ||
<pre>player.Armour</pre> | <pre>player.Armour</pre> | ||
== Example == | |||
The following example send a personal message saying '''Hey you, have fun here'''!: | |||
<source lang=squirrel> | |||
function onPlayerCommand( player, cmd, text ); | |||
if ( cmd == "armour" ) | |||
{ | |||
player.Armour = 200; | |||
MessagePlayer( " Done " , player ); | |||
} | |||
</source> |
Revision as of 09:07, 25 July 2014
Syntax
player.Armour
Example
The following example send a personal message saying Hey you, have fun here!:
function onPlayerCommand( player, cmd, text );
if ( cmd == "armour" )
{
player.Armour = 200;
MessagePlayer( " Done " , player );
}