16 lines
346 B
C#
16 lines
346 B
C#
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.");
|
|
}
|
|
}
|
|
}
|