add selbsteinknasten
This commit is contained in:
@@ -40,6 +40,7 @@ namespace ReallifeGamemode.Server.Managers
|
||||
|
||||
public static List<CarwashPoint> carwashPoints = new List<CarwashPoint>();
|
||||
|
||||
public static List<JailPoint> jailPoints = new List<JailPoint>();
|
||||
|
||||
public static Vector3 eventportPosition;
|
||||
public static bool eventportActive = false;
|
||||
@@ -121,6 +122,25 @@ namespace ReallifeGamemode.Server.Managers
|
||||
|
||||
#endregion WeaponPoints
|
||||
|
||||
#region JailPoints
|
||||
|
||||
JailPoint jail = new JailPoint()
|
||||
{
|
||||
Position = new Vector3(1854.06, 2582.38, 45.67)
|
||||
};
|
||||
|
||||
|
||||
jailPoints.Add(jail);
|
||||
|
||||
foreach (JailPoint j in jailPoints)
|
||||
{
|
||||
NAPI.Marker.CreateMarker(1, new Vector3(j.Position.X, j.Position.Y, j.Position.Z - 2), new Vector3(j.Position.X, j.Position.Y, j.Position.Z + 1),
|
||||
new Vector3(0, 0, 0), 1.5f, new Color(255, 255, 255, 0), false, 0);
|
||||
NAPI.TextLabel.CreateTextLabel("Stellen - Dr\u00fccke ~y~E", j.Position, 7, 1, 0, new Color(255, 255, 255), false, 0);
|
||||
}
|
||||
|
||||
#endregion JailReleasePoints
|
||||
|
||||
#region JailReleasePoints
|
||||
|
||||
JailReleasePoint jailPointLSPD = new JailReleasePoint()
|
||||
@@ -558,3 +578,8 @@ public class CarwashPoint
|
||||
public Vector3 Position { get; set; }
|
||||
}
|
||||
|
||||
public class JailPoint
|
||||
{
|
||||
public Vector3 Position { get; set; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user