Scripting/Squirrel/Functions/Player.RemoveWeapon: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
m (→Example) |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
==Usage== | ==Usage== | ||
Removes a weapon from the player's inventory. | Removes a weapon from the player's inventory. Returns void. | ||
==Syntax== | ==Syntax== | ||
<code> player.RemoveWeapon(WEAPON_ID)</code> | <code> player.RemoveWeapon(int WEAPON_ID)</code> | ||
==Example== | ==Example== | ||
<source lang=squirrel> | |||
< | function onPlayerCommand(player, cmd, text) { | ||
if (cmd == "remweps") { | |||
function onPlayerCommand( player, cmd, text ) | try { | ||
{ | for (local i = 0; i < 9; ++i) { | ||
player.RemoveWeapon(i); | |||
} | |||
} | |||
catch(e) { | |||
} | |||
} | } | ||
} | } | ||
</source> | |||
</ |
Latest revision as of 10:49, 26 April 2019
Usage
Removes a weapon from the player's inventory. Returns void.
Syntax
player.RemoveWeapon(int WEAPON_ID)
Example
function onPlayerCommand(player, cmd, text) {
if (cmd == "remweps") {
try {
for (local i = 0; i < 9; ++i) {
player.RemoveWeapon(i);
}
}
catch(e) {
}
}
}