GetPlayerArmor: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
Line 10: Line 10:


==Example==
==Example==
  armor = [[getPlayerArmor]] ( [[findPlayer]] ( Someguy ) )
  armor = [[getPlayerArmor]] ( [[findPlayer]] ( "Someguy" ) )
  [[serverchat]] ( "Someguy's current Armor: ", armor, "." )
  [[serverchat]] ( "Someguy's current Armor: ", armor, "." )

Revision as of 10:53, 26 March 2006

Description

This function returns a float that contains the current armor for the specified player.

Syntax

float getPlayerArmor ( player player )

Required Arguments

  • player: The player whose armor you want to check

Example

armor = getPlayerArmor ( findPlayer ( "Someguy" ) )
serverchat ( "Someguy's current Armor: ", armor, "." )