using System; using System.Collections.Generic; using System.Text; using GTANetworkAPI; namespace reallife_gamemode.Server.Command { public class Admin : Script { [Command("o")] public void sendOChat(Client player, string message) { NAPI.Chat.SendChatMessageToAll("~r~" + player.Name + " sagt:~w~ " + message); } } }