Template:Example: Difference between revisions

From RAGE Multiplayer Wiki
(Replaced content with "===Example===")
Tag: Replaced
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
===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;
}
}

Latest revision as of 13:59, 4 May 2021

Example