Scripting/Squirrel/Functions/Player.Weapon

From Vice City Multiplayer
Revision as of 09:16, 8 January 2015 by MatheuS (talk | contribs) (→‎Example)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

Syntax

int player.Weapon

Example

This command gives player the name of the weapon they are using when they type '/c mywep'.

function onPlayerCommand( player, cmd, text )
{
     if ( cmd == "mywep" )
     {
          MessagePlayer( "Your current weapon: " + GetWeaponName( player.Weapon ), player );
     }
}