What's new

Guide Adding Cayo Perico island

Victoria Secret

Time never comes again.
S. Moderator
Joined
Apr 28, 2021
Messages
9
Reaction score
66
Points
231
Location
US
To add Cayo Perico Island, your GameBuild must be 2189, if you ask how to do it, you need to write set sv_enforceGameBuild 2189 to server.cfg, +set sv_enforceGameBuild 2189 to start.bat, then if you write the code line below, I will give you the island active in any client will become.


local islandVec = vector3(4840.571, -5174.425, 2.0)
Citizen.CreateThread(function()
while true do
local pCoords = GetEntityCoords(GetPlayerPed(-1))
local distance1 = #(pCoords - islandVec)
if distance1 < 2000.0 then
Citizen.InvokeNative("0x9A9D1BA639675CF1", "HeistIsland", true) -- load the map and removes the city
Citizen.InvokeNative("0x5E1460624D194A38", true) -- load the minimap/pause map and removes the city minimap/pause map
else
Citizen.InvokeNative("0x9A9D1BA639675CF1", "HeistIsland", false)
Citizen.InvokeNative("0x5E1460624D194A38", false)
end
Citizen.Wait(5000)
end
end)
 

Edyw

Bronze Elite
Joined
Jul 23, 2021
Messages
14
Reaction score
2
Points
166
To add Cayo Perico Island, your GameBuild must be 2189, if you ask how to do it, you need to write set sv_enforceGameBuild 2189 to server.cfg, +set sv_enforceGameBuild 2189 to start.bat, then if you write the code line below, I will give you the island active in any client will become.
:p
 

mounderbdj

Member
Joined
Jul 17, 2022
Messages
3
Reaction score
0
Points
146
Location
mila
To add Cayo Perico Island, your GameBuild must be 2189, if you ask how to do it, you need to write set sv_enforceGameBuild 2189 to server.cfg, +set sv_enforceGameBuild 2189 to start.bat, then if you write the code line below, I will give you the island active in any client will become.
good
 

tmsa7bgbg

Bronze Elite
Joined
Jul 17, 2022
Messages
17
Reaction score
3
Points
156
Location
oran
To add Cayo Perico Island, your GameBuild must be 2189, if you ask how to do it, you need to write set sv_enforceGameBuild 2189 to server.cfg, +set sv_enforceGameBuild 2189 to start.bat, then if you write the code line below, I will give you the island active in any client will become.
gg
 

diyarbero543

Silver Elite
Joined
Nov 13, 2021
Messages
26
Reaction score
31
Points
176
Location
d
To add Cayo Perico Island, your GameBuild must be 2189, if you ask how to do it, you need to write set sv_enforceGameBuild 2189 to server.cfg, +set sv_enforceGameBuild 2189 to start.bat, then if you write the code line below, I will give you the island active in any client will become.
hi how can I add city and island and don't remove anything
 
Top