Files
reallife-gamemode/Server/Commands/Admin.cs
2018-09-17 18:57:49 +02:00

17 lines
377 B
C#

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);
}
}
}