diff --git a/ReallifeGamemode.Server/Managers/PositionManager.cs b/ReallifeGamemode.Server/Managers/PositionManager.cs index 4c8392cb..4dd14793 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(88, new Vector3(point.Position.X, point.Position.Y, point.Position.Z), (float)0.7, 59, "Fahrzeugvermietung", 255, 200, true, 0, 0); + NAPI.Blip.CreateBlip(88, new Vector3(point.Position.X, point.Position.Y, point.Position.Z), (float)0.7, 59, "Fahrzeugverleih", 255, 200, true, 0, 0); } } diff --git a/ReallifeGamemode.Server/Util/Rentcar.cs b/ReallifeGamemode.Server/Util/Rentcar.cs index d2f74512..6cadfecd 100644 --- a/ReallifeGamemode.Server/Util/Rentcar.cs +++ b/ReallifeGamemode.Server/Util/Rentcar.cs @@ -74,7 +74,7 @@ namespace ReallifeGamemode.Server.Util player.SetData("hasRentcar", false); player.TriggerEvent("abortRentcarTimer"); - player.SendChatMessage("~y~[Fahrzeugvermietung] ~w~Mietfahrzeug erfolgreich gekündigt (Kosten: ~g~$~w~" + mapPlayerRentcarBill[player.Name].Item2 + ")."); + player.SendChatMessage("~y~[Fahrzeugverleih] ~w~Mietfahrzeug erfolgreich gekündigt (Kosten: ~g~$~w~" + mapPlayerRentcarBill[player.Name].Item2 + ")."); VehicleManager.DeleteVehicle(mapPlayerRentcarBill[player.Name].Item1); Rentcar.mapPlayerRentcarBill.Remove(player.Name); } @@ -172,11 +172,11 @@ namespace ReallifeGamemode.Server.Util mapPlayerRentcarBill[player.Name] = (v, 0); - player.SendChatMessage("~y~[Fahrzeugvermietung] ~w~Viel Spaß mit deinem Fahrzeug! Mit '/rent stop' kannst du den Mietvertrag kündigen."); + player.SendChatMessage("~y~[Fahrzeugverleih] ~w~Viel Spaß mit deinem Fahrzeug! Mit '/rent stop' kannst du den Mietvertrag kündigen."); if (canRentForFree(player)) { - player.SendChatMessage("~y~[Fahrzeugvermietung] ~w~Da du neu in der Stadt bist, wird dir diese Fahrt nicht in Rechnung gestellt."); + player.SendChatMessage("~y~[Fahrzeugverleih] ~w~Da du neu in der Stadt bist, wird dir diese Fahrt nicht in Rechnung gestellt."); } player.SetData("hasRentcar", true);