Scripting/Squirrel/Functions/Player.Armour
This wiki is using an old backup from 2020
Some information may be old/missing
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 );
}