/cuff positioning test

This commit is contained in:
2021-04-06 17:34:34 +02:00
parent 8ee68a5a54
commit b4fb23078b
5 changed files with 61 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
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.SetSharedData("InFrontOf", pos);
}
}
}