Can someone give me a list with all the values i can get of the Var $player
Like $player.size etc.
and maybee someone can make a sticky with all Standard variables like $player
Thanks
$player values
Moderator: Moderators
$player is a targetname automatically assigned to the player or for multiplayer the players.
In a multi player game with 6 players $player.size = 6 it is the same for any targetname array . Anything with a targetname can hold variables for example $player.bannanas = 4 . iprintln $player.bannanas will print 4 on the screen . Variables can also be arrays $player.bannanas[1] = 6 $player.bannanas[2] = 2 . iprintln $player.bannanas[2] $player.bannanas[1] will print 2 6 on the screen . There are other automatic variables as well like $player.isdisguised or has_disguise used for disguise levels . Download the SDK for the documentation and look under the heading player .
In a multi player game with 6 players $player.size = 6 it is the same for any targetname array . Anything with a targetname can hold variables for example $player.bannanas = 4 . iprintln $player.bannanas will print 4 on the screen . Variables can also be arrays $player.bannanas[1] = 6 $player.bannanas[2] = 2 . iprintln $player.bannanas[2] $player.bannanas[1] will print 2 6 on the screen . There are other automatic variables as well like $player.isdisguised or has_disguise used for disguise levels . Download the SDK for the documentation and look under the heading player .
