NoobSpawn, NoobSpawnRollerSystem

This commit is contained in:
Mac_Slash
2020-04-24 02:39:07 +02:00
parent 3258f68e76
commit 55a9383052
7 changed files with 194 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
using ReallifeGamemode.Database.Entities;
using ReallifeGamemode.Server.Extensions;
using ReallifeGamemode.Server.Util;
using ReallifeGamemode.Server.WeaponDeal;
namespace ReallifeGamemode.Server.Events
{
public class PlayerSpawn : Script
{
[ServerEvent(Event.PlayerSpawn)]
public void OnPlayerSpawn(Player player)
{
NAPI.ClientEvent.TriggerClientEvent(player, "SERVER:WeaponModifier", player);
}
}
}