Adding Locations
Spawn Points & Maps
Map Configuration Structure
mapName = {
menu = {
menuId = 'map_selection_external', -- or 'map_selection_interior'
title = 'Display Name',
icon = 'fa-solid fa-icon-name',
description = 'Brief tactical description',
image = 'https://your-image-url.jpg',
},
recommendedSet = {
SoldierRec = 16, -- Recommended enemy count
SoldierMax = 30, -- Maximum enemy count
hostageRec = 1, -- Recommended hostage count
hostageMax = 10, -- Maximum hostage count
},
vehicleSpawns = {
{coords = vector4(x, y, z, heading), vehicle = 'vehicle_name'},
},
polyZone = {
-- Defines the playable area boundary
vector3(x, y, z),
-- Add more points to define the polygon
},
playerSpawns = {
vector4(x, y, z, heading), -- Player spawn points
},
guardCoords = {
vector4(x, y, z, heading), -- Enemy spawn locations
}
}Adding New Maps
Coordinate Tools
Interior Maps
IPL Integration
Small Interiors
Last updated