Scripting/Squirrel/Functions/Player.RemoveWeapon
This wiki is using an old backup from 2020
Some information may be old/missing
Usage
Removes a weapon from the player's inventory.
Syntax
player.RemoveWeapon(WEAPON_ID)
Example
function onPlayerCommand( player, cmd, text )
{
if (cmd == "remweps")
{
try
{
for (local i = 0 ; i <200 ; i++)
{
player.RemoveWeapon(i);
}
}
catch(e)
{
}
}
}