TakeAllWeapons

From Multi Theft Auto: Wiki
Revision as of 18:55, 15 August 2007 by Arc (talk | contribs)
Jump to navigation Jump to search

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

Note: weapons are removed when a player dies by default. This means that you want to take them away when the player is alive.

Syntax

takeAllWeapons ( player thePlayer )

Required Arguments

  • thePlayer: A player object referencing the specified player

Returns

Returns true if the function succeeded, false otherwise.

Example

thePlayer = getPlayerFromID ( 1 )
takeAllWeapons ( thePlayer ) 
outputChatBox ( "All weapons removed from " .. getClientName ( thePlayer ) .. "." )

See Also