15 lines
387 B
C#
15 lines
387 B
C#
using System;
|
|
using GTANetworkAPI;
|
|
|
|
namespace reallife_gamemode
|
|
{
|
|
public class Main : Script
|
|
{
|
|
[ServerEvent(Event.ResourceStart)]
|
|
public void OnResourceStart()
|
|
{
|
|
NAPI.Server.SetCommandErrorMessage("~r~[FEHLER]~s~ Dieser Command existiert nicht.");
|
|
NAPI.Util.ConsoleOutput("reallife-gamemode resource loaded!");
|
|
}
|
|
}
|
|
} |