Files
red-valley/cache/files/helnius_xero24/resource.rpf

62 lines
12 KiB
Plaintext
Raw Normal View History

2026-03-29 21:41:17 +03:00
RPF2<00><00><00> 00w w'(/client.luaconfig.luafxmanifest.luapaleto_bay_RemoveIpl.lua
vector3(293.911, -1257.827, 29.412),
vector3(-533.918762, -1227.76965, 19.5815754),
vector3(-2065.81348, -325.3963, 14.44404),
vector3(-73.36257, 6425.72, 32.5940628)
}
local EntitySets = {
CounterGlassBarrier = "int_xero_counter_glass_barrier",
Counter = "int_xero_counter"
}
CreateThread(function()
local setName = Config.EnableGlassBarrier and EntitySets.CounterGlassBarrier or EntitySets.Counter
for i = 1, #Interiors do
local interiorID = GetInteriorAtCoords(Interiors[i])
if interiorID and interiorID ~= 0 then
LoadInterior(interiorID)
while not IsInteriorReady(interiorID) do
Wait(50)
end
if not IsInteriorEntitySetActive(interiorID, setName) then
ActivateInteriorEntitySet(interiorID, setName)
end
RefreshInterior(interiorID)
end
end
end)Config = {}
Config.EnableGlassBarrier = true fx_version 'cerulean'
game 'gta5'
this_is_a_map 'yes'
lua54 'yes'
-- Download Door Audio and Door Tuning at https://github.com/Heleniust/helnius-map-data
author 'helnius' -- Discord: https://discord.gg/RGgqnsxvMv, Tebex: https://helnius.com/
description 'Xero Gas Stations'
version '1.0.0-release'
escrow_ignore {
'config.lua',
'client.lua',
'paleto_bay_RemoveIpl.lua',
'version-check.lua'
}
client_scripts {
'config.lua',
'client.lua',
'paleto_bay_RemoveIpl.lua'
}
-- server_script 'version-check.lua' -- removed: file not shipped with this build
dependency '/assetpacks'CreateThread(function()
while true do
Wait(500)
RemoveIpl("gasstation_ipl_group1")
RemoveIpl("gasstation_ipl_group1_lod")
RemoveIpl("gasstation_ipl_group2")
RemoveIpl("gasstation_ipl_group2_lod")
end
end)