17 lines
327 B
C#
17 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using GTANetworkAPI;
|
|
|
|
namespace ReallifeGamemode.Server.Events
|
|
{
|
|
internal class PlayerEvent : Script
|
|
{
|
|
[RemoteEvent("CLIENT:SET_InFrontOfPos")]
|
|
public void SetFrontOfPos(Player player, Vector3 pos)
|
|
{
|
|
player.Position = pos;
|
|
}
|
|
}
|
|
}
|