Scripting/Squirrel/Functions/Player.Weapon
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 ); } }