TakeAllWeapons: Difference between revisions
Jump to navigation
Jump to search
JonChappell (talk | contribs) m (→Example) |
(→Syntax) |
||
Line 4: | Line 4: | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua">bool TakeAllWeapons ( player player )</syntaxhighlight> | |||
===Required Arguments=== | ===Required Arguments=== | ||
*''' | *'''player''': A player object referencing the specified player | ||
==Example== | ==Example== |
Revision as of 02:32, 18 May 2006
Description
This function removes every weapons from a specified player, rendering him unarmed. It returns a boolean value (true or false) depending on whether the function passed or failed.
Syntax
bool TakeAllWeapons ( player player )
Required Arguments
- player: A player object referencing the specified player
Example
player = getPlayerFromID ( 1 ) TakeAllWeapons ( player ) serverChat ( "All weapons removed from ", getPlayerName ( player ), "." )