TakeAllWeapons

From Multi Theft Auto: Wiki
Revision as of 11:27, 14 August 2006 by EAi (talk | contribs)
Jump to navigation Jump to search

This function removes every weapons from a specified player, rendering him unarmed.

Syntax

takeAllWeapons ( thePlayer )

Required Arguments

  • thePlayer: A player object referencing the specified player

Returns

Returns true if the function succeeded, false otherwise.

Example

player = getPlayerFromID ( 1 )
takeAllWeapons ( player ) 
outputChatBox ( "All weapons removed from ", getPlayerName ( player ), "." )

See Also