From 86970361f23525bcb21857cb36b62d137ddfa594 Mon Sep 17 00:00:00 2001 From: Fabian Date: Mon, 3 May 2021 00:05:42 +0200 Subject: [PATCH] rentcar blip color + report menu dies das --- ReallifeGamemode.Client/Player/reportmenu.ts | 4 ++-- ReallifeGamemode.Server/Managers/PositionManager.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ReallifeGamemode.Client/Player/reportmenu.ts b/ReallifeGamemode.Client/Player/reportmenu.ts index 35d0c38b..a5232cd2 100644 --- a/ReallifeGamemode.Client/Player/reportmenu.ts +++ b/ReallifeGamemode.Client/Player/reportmenu.ts @@ -90,9 +90,9 @@ export default function reportList(globalData: IGlobalData) { globalData.InMenu = true; - var types = ["Quick Report", "Ticket Report"]; + var types = ["Ticket Report", "Quick Report"]; - reportMenu = new Menu("QuickReport/Ticket", "", new Point(0, screenRes.y / 3), null, null); + reportMenu = new Menu("Ticket/QuitReport", "", new Point(0, screenRes.y / 3), null, null); var typesItem = new UIMenuListItem("Typ", "", new ItemsCollection(types)); reportMenu.AddItem(typesItem); diff --git a/ReallifeGamemode.Server/Managers/PositionManager.cs b/ReallifeGamemode.Server/Managers/PositionManager.cs index ca6e40dc..98305c37 100644 --- a/ReallifeGamemode.Server/Managers/PositionManager.cs +++ b/ReallifeGamemode.Server/Managers/PositionManager.cs @@ -345,7 +345,7 @@ namespace ReallifeGamemode.Server.Managers new Vector3(0, 0, 0), 1.5f, new Color(255, 255, 255, 50), false, 0); NAPI.TextLabel.CreateTextLabel("~y~Fahrzeugverleih\n~w~Drücke ~b~E~w~ um ein Fahrzeug zu mieten", point.Position, 7, 1, 0, new Color(255, 255, 255), false, 0); - NAPI.Blip.CreateBlip(739, new Vector3(point.Position.X, point.Position.Y, point.Position.Z), (float)0.7, 27, "Fahrzeugvermietung", 255, 200, true, 0, 0); + NAPI.Blip.CreateBlip(739, new Vector3(point.Position.X, point.Position.Y, point.Position.Z), (float)0.7, 59, "Fahrzeugvermietung", 255, 200, true, 0, 0); } }