17 lines
377 B
C#
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);
|
|
}
|
|
}
|
|
}
|