You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if not IsDuplicityVersion() then
Config.interiorIds = {}
for k, v in ipairs(Config.Shops) do
Config.interiorIds[#Config.interiorIds + 1] = GetInteriorAtCoords(v)
end
end
`
The text was updated successfully, but these errors were encountered:
ive add in config.lua under
config.shops = {
more vector3 coords for more shops in order to be used but only the first one will work...
how can i fix that more shops can be used?
see my config file
`Config = {}
Config.AllTattooList = json.decode(LoadResourceFile(GetCurrentResourceName(), 'AllTattoos.json'))
Config.TattooCats = {
{"ZONE_HEAD", "Hoofd", {vec(0.0, 0.7, 0.7), vec(0.7, 0.0, 0.7), vec(0.0, -0.7, 0.7), vec(-0.7, 0.0, 0.7)}, vec(0.0, 0.0, 0.5)},
{"ZONE_LEFT_LEG", "Linker Been", {vec(-0.2, 0.7, -0.7), vec(-0.7, 0.0, -0.7), vec(-0.2, -0.7, -0.7)}, vec(-0.2, 0.0, -0.6)},
{"ZONE_LEFT_ARM", "Linker Arm", {vec(-0.4, 0.5, 0.2), vec(-0.7, 0.0, 0.2), vec(-0.4, -0.5, 0.2)}, vec(-0.2, 0.0, 0.2)},
{"ZONE_RIGHT_LEG", "Rechter Been", {vec(0.2, 0.7, -0.7), vec(0.7, 0.0, -0.7), vec(0.2, -0.7, -0.7)}, vec(0.2, 0.0, -0.6)},
{"ZONE_TORSO", "Borst", {vec(0.0, 0.7, 0.2), vec(0.0, -0.7, 0.2)}, vec(0.0, 0.0, 0.2)},
{"ZONE_RIGHT_ARM", "Rechter Arm", {vec(0.4, 0.5, 0.2), vec(0.7, 0.0, 0.2), vec(0.4, -0.5, 0.2)}, vec(0.2, 0.0, 0.2)},
}
Config.Shops = {
vector3(1322.02, -1654.53, 52.28),
vector3(-1155.1, -1427.76, 4.96),
vector3(322.1, 180.4, 103.5),
vector3(-586.05, -600.71, 41.43),
vector3(-3170.0, 1075.0, 20.8),
vector3(1864.6, 3747.7, 33.0),
vector3(-293.7, 6200.0, 31.4)
}
if not IsDuplicityVersion() then
Config.interiorIds = {}
for k, v in ipairs(Config.Shops) do
Config.interiorIds[#Config.interiorIds + 1] = GetInteriorAtCoords(v)
end
end
`
The text was updated successfully, but these errors were encountered: