+ Only >Supporter can use chat while dead

* Adjusted hospital spawn-rotation
+ Added regions to key-presses(preperation)
This commit is contained in:
VegaZ
2020-04-21 20:00:44 +02:00
parent f5f38d7032
commit 1297640ea6
3 changed files with 8 additions and 1 deletions

View File

@@ -27,6 +27,7 @@ namespace ReallifeGamemode.Server.Events
{
public class Key : Script
{
#region User Key
[RemoteEvent("keyPress:NUM2")]
public void KeyPressNUM2(Player player)
{
@@ -57,6 +58,7 @@ namespace ReallifeGamemode.Server.Events
GroundItem.PickUpGroundItem(player);
}
[RemoteEvent("keyPress:UP_ARROW")]
public void KeyPressUpArrow(Player player)
{
@@ -550,5 +552,8 @@ namespace ReallifeGamemode.Server.Events
player.TriggerEvent("ToggleVehicleMenu");
}
}
#endregion
#region Faction Key
#endregion
}
}