Das aller erste, ich glaub ich gib mir n’ schönen Kebab, so'n schönen Köfte-Spieß weißt du? so'n schönen Köfte-Spieß, Keupstraße, ein Köfte-Spieß erstmal, mit gar kein Reden auch und so, Haval, gib mir einfach nur ein Köfte-Spieß, dazu ein schönen frischen Ayran aus dieser Maschine weißt du, wo man den selber so ,,All You Can Drink" mäßig zapfen kann, und dann n' Handy besorgen man, ich brauch n' Handy man, ich brauch n' Handy.

This commit is contained in:
Siga
2020-04-05 00:04:57 +02:00
parent a568cb1ad9
commit 2ca92e301b
5 changed files with 163 additions and 68 deletions

View File

@@ -20,6 +20,8 @@ namespace ReallifeGamemode.Server.Managers
public static List<ItemshopPoint> itemshopPoints = new List<ItemshopPoint>();
public static List<JobPoint> jobPoints = new List<JobPoint>();
[ServerEvent(Event.ResourceStart)]
public void OnResourceStart()
{
@@ -149,6 +151,22 @@ namespace ReallifeGamemode.Server.Managers
#endregion ElevetaorPoints
JobPoint jobPointRefuseCollector = new JobPoint()
{
Position = new Vector3(-429.237, -1727.9839, 19.73836),
jobId = 2
};
jobPoints.Add(jobPointRefuseCollector);
foreach(JobPoint p in jobPoints)
{
NAPI.Marker.CreateMarker(1, new Vector3(p.Position.X, p.Position.Y, p.Position.Z - 2), new Vector3(p.Position.X, p.Position.Y, p.Position.Z + 1),
new Vector3(0, 0, 0), 1.5f, new Color(255, 255, 255, 50), false, 0);
NAPI.TextLabel.CreateTextLabel("M\u00fcllmann - Dr\u00fccke ~y~J~s~ um Job zu starten", p.Position, 7, 1, 0, new Color(255, 255, 255), false, 0);
NAPI.Blip.CreateBlip(318, p.Position, 1f, 0, "Müllmann", 255, 0,true);
}
#region Shops
foreach (var shop in ShopManager.clotheStores)
{
@@ -229,6 +247,13 @@ public class ItemshopPoint
}
public class JobPoint
{
public Vector3 Position { get; set; }
public int jobId { get; set; }
}
public class ElevatorPoint
{
public Vector3 Position { get; set; }