Gamemode.PlayerCanJoinTeam
From GMod Wiki
Event Hook | |
Hook Name | PlayerCanJoinTeam |
Syntax | GM:PlayerCanJoinTeam( Player Player ) |
Description | Return true to allow a player to join a team. |
Returns | Boolean |
Lua State | |
BBCode | [b][url=wiki.garrysmod.com/?title=Gamemode.PlayerCanJoinTeam]Gamemode.PlayerCanJoinTeam [img]http://wiki.garrysmod.com/favicon.ico[/img][/url][/b] |
Examples
Description | Allows for only admins to join a team. |
---|---|
Used on | |
Code | function GM:PlayerCanJoinTeam( ply ) return ply:IsAdmin( ) end |
Output | Only admins can join a team. |
See also