From ddf361466c783020c86a4d72efd8c04a0c1c5dc2 Mon Sep 17 00:00:00 2001 From: Nordi98 Date: Mon, 28 Jul 2025 20:05:45 +0200 Subject: [PATCH] Update client.lua --- resources/[tools]/cayomap/client.lua | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/resources/[tools]/cayomap/client.lua b/resources/[tools]/cayomap/client.lua index 60d3d4798..b82aeb9ac 100644 --- a/resources/[tools]/cayomap/client.lua +++ b/resources/[tools]/cayomap/client.lua @@ -1,25 +1,8 @@ CreateThread(function() - Wait(1000) + Wait(2000) - -- Erweitere die Welt-Grenzen für den Spieler + -- Erweitere die Welt-Grenzen permanent ExtendWorldBoundaryForPlayer(-4000.0, -6500.0, 6500.0, -3000.0) - -- Setze Map Zoom Data für bessere Sicht - SetMapZoomDataLevel(0, 0.96, 0.9, 0.08, 0.0, 0.0) - SetMapZoomDataLevel(1, 1.6, 0.9, 0.08, 0.0, 0.0) - SetMapZoomDataLevel(2, 8.6, 0.9, 0.08, 0.0, 0.0) - SetMapZoomDataLevel(3, 12.3, 0.9, 0.08, 0.0, 0.0) - SetMapZoomDataLevel(4, 22.3, 0.9, 0.08, 0.0, 0.0) -end) - --- Alternative Methode für Pausemap -CreateThread(function() - while true do - Wait(500) - - if IsPauseMenuActive() then - -- Stelle sicher, dass die erweiterten Grenzen aktiv sind - ExtendWorldBoundaryForPlayer(-4000.0, -6500.0, 6500.0, -3000.0) - end - end + print("^2[CayoMap]^7 Cayo Perico zur Pausemap hinzugefügt!") end)