Add ChatService, Folder for Managers

This commit is contained in:
Lennart Kampshoff
2018-09-18 22:40:14 +02:00
parent 7a4b93f6bf
commit af96374b23
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using GTANetworkAPI;
using System;
using System.Collections.Generic;
using System.Text;
namespace reallife_gamemode.Server.Services
{
class ChatService
{
public static void NotAuthorized(Client player)
{
player.SendChatMessage("~r~[FEHLER]~s~ Du kannst diesen Befehl nicht ausführen.");
}
}
}