Template:Example

From RAGE Multiplayer Wiki
Revision as of 20:03, 8 November 2020 by Wyciokazz (talk | contribs) (→‎Example)

Example

[ServerEvent(Event.PlayerDisconnected)] public void OnPlayerDisconnect(Player player, DisconnectionType type, string reason) { switch (type) { case DisconnectionType.Left: player.SendChatMessage($"~b~{player.Name}~w~ has quit the server."); break; case DisconnectionType.Timeout: player.SendChatMessage($"~b~{player.Name}~w~ has timed out."); break; case DisconnectionType.Kicked: player.SendChatMessage($"~b~{player.Name}~w~ was kicked from the server {reason}."); break; } }