Config = {} -- Ajustes gerais Config.Debug = false Config.SpawnFirstWaveOnStart = true Config.TotalMainTrains = 10 Config.MainTrainSpawnIntervalMs = 60000 -- 1 minuto Config.TotalTrams = 8 Config.TramSpawnIntervalMs = 35000 -- Velocidade: o MTA usa unidade interna. A conversão abaixo é visual/aproximada. Config.SpeedToMtaRatio = 0.01125 Config.AccelerationTickMs = 250 Config.KeepAliveTickMs = 1000 Config.WatchdogTickMs = 8000 Config.StartAfterSpawnMs = 900 -- aceleração progressiva Config.MainTrainAccelerationStep = 0.035 Config.TramAccelerationStep = 0.018 -- se travar por muito tempo, respawna Config.StuckMinSpeed = 0.01 Config.StuckMaxChecks = 5 -- Trens principais: LS -> LV -> SF -> LS pelo circuito ferroviário do GTA/MTA. -- Sem vagões/composições para evitar sobreposição. Config.MainTrainTypes = { { model = 538, name = "Brown Streak", cruiseKmh = 150, maxKmh = 200, direction = 1 }, { model = 537, name = "Freight Loco", cruiseKmh = 135, maxKmh = 190, direction = 1 }, { model = 538, name = "Express LS-LV-SF", cruiseKmh = 170, maxKmh = 200, direction = 1 }, { model = 537, name = "Cargo Express", cruiseKmh = 155, maxKmh = 200, direction = 1 }, } -- Pontos de spawn próximos de trilhos principais. Se algum spawn nascer fora do trilho, -- ajuste alguns metros até encaixar melhor no seu mapa. Config.MainTrainSpawnPoints = { { x = 1995.0, y = -1949.0, z = 13.2, rot = 0, label = "Los Santos" }, { x = 2864.0, y = 1287.0, z = 10.8, rot = 0, label = "Las Venturas" }, { x = -1941.0, y = 168.0, z = 27.0, rot = 0, label = "San Fierro" }, { x = -88.0, y = -1075.0, z = 2.0, rot = 0, label = "Flint/LS" }, } -- Bondinhos de San Fierro. -- Modelo 449 = Tram/Bondinho. Mantido separado dos trens principais. Config.TramTypes = { { model = 449, name = "Bondinho SF", cruiseKmh = 45, maxKmh = 70, direction = 1 }, { model = 449, name = "Bondinho SF Reverso", cruiseKmh = 42, maxKmh = 65, direction = -1 }, } -- Pontos aproximados do circuito de bondinho de SF. -- Use /ambienttrains spawntram para testar e ajuste se necessário. Config.TramSpawnPoints = { { x = -1987.0, y = 137.0, z = 27.7, rot = 0, label = "SF Downtown" }, { x = -2262.0, y = 535.0, z = 35.1, rot = 0, label = "SF Market" }, { x = -2645.0, y = 635.0, z = 14.5, rot = 0, label = "SF Financial" }, { x = -1820.0, y = -155.0, z = 9.4, rot = 0, label = "SF Easter" }, } -- Proteções Config.DamageProof = true Config.LockVehicles = true Config.DisableDerail = true Config.SetFrozenOnSpawn = false