Scripting/Squirrel/Functions/Player.RemoveWeapon: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "==Usage== Removes a weapon from the player's inventory. ==Syntax== <code> player.RemoveWeapon(WEAPON_ID)</code> ==Example== <code>function onPlayerCommand( player, cmd, te...")
(No difference)

Revision as of 12:35, 11 April 2017

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)
 {
 }
}

}