This commit is contained in:
Max 2025-06-13 17:04:47 +02:00
parent fe9ffe998c
commit 8ded1334cf
90 changed files with 113 additions and 0 deletions

View file

@ -0,0 +1,24 @@
local entitySets = {
["subham_mansion1_furnished_int"] = true, -- Set false for non-furnished Interior
}
-- Do not edit anything from here
Citizen.CreateThread(function()
RequestIpl("subham_mansion1_milo_")
local interiorID = GetInteriorAtCoords(-888.9797, 48.87651, 51.9246254)
if IsValidInterior(interiorID) then
for prop, enable in pairs(entitySets) do
if enable then
EnableInteriorProp(interiorID, prop)
else
DisableInteriorProp(interiorID, prop)
end
end
RefreshInterior(interiorID)
print("Mansion 1 is ready to use. Do not edit anything to ensure a smooth experience")
end
end)