This commit is contained in:
VegaZ
2018-10-15 17:07:48 +02:00
12 changed files with 414 additions and 0 deletions

View File

@@ -27,7 +27,11 @@ namespace reallife_gamemode.Server.Services
{
player.SendChatMessage("~r~[FEHLER]~s~ Der Spieler wurde nicht gefunden.");
}
<<<<<<< HEAD
=======
>>>>>>> feature/client-player-keys
public static void PlayerNotLoggedIn(Client player)
{
player.SendChatMessage("~r~[FEHLER]~s~ Du bist nicht eingeloggt.");
@@ -36,7 +40,10 @@ namespace reallife_gamemode.Server.Services
{
player.SendChatMessage("~r~[FEHLER]~s~ Die Aktion wurde nicht ausgeführt.");
}
<<<<<<< HEAD
=======
>>>>>>> feature/client-player-keys
public static void BroadcastFaction(string message, List<Faction> factions)
{
foreach (Client c in NAPI.Pools.GetAllPlayers())
@@ -55,6 +62,7 @@ namespace reallife_gamemode.Server.Services
public static void BroadcastFaction(string message, Faction faction)
{
BroadcastFaction(message, new List<Faction> { faction });
<<<<<<< HEAD
}
public static void BroadcastAdmin(string message, AdminLevel minLevel)
@@ -66,6 +74,8 @@ namespace reallife_gamemode.Server.Services
p.SendChatMessage(message);
}
});
=======
>>>>>>> feature/client-player-keys
}
}
}