108 lines
2.8 KiB
Lua
108 lines
2.8 KiB
Lua
-- Remnant Freelancer Lua Configuration File
|
|
|
|
-- DATE Settings
|
|
|
|
setglobal('day_gen', "31")
|
|
setglobal('months_gen', "July")
|
|
|
|
-- DEBUG Settings
|
|
|
|
setglobal('gcs_state', "off")
|
|
|
|
-- CHARACTER Settings
|
|
|
|
setglobal('char_gen', "trent")
|
|
setglobal('voice_gen', "Trent")
|
|
setglobal('dx_gen', "trent")
|
|
setglobal('body_gen', "MLBODY")
|
|
setglobal('anm_gen', "stand")
|
|
|
|
-- MISSIONS Settings
|
|
|
|
setglobal('manhattan_gen', "origin")
|
|
setglobal('rochester_gen', "origin")
|
|
setglobal('westpoint_gen', "origin")
|
|
setglobal('buffalo_gen', "origin")
|
|
setglobal('kyoto_gen', "origin")
|
|
setglobal('ainu_gen', "origin")
|
|
setglobal('arranmore_gen', "origin")
|
|
setglobal('vogtland_gen', "origin")
|
|
setglobal('newberlin_gen', "origin")
|
|
setglobal('toledo_gen', "origin")
|
|
|
|
|
|
-- CAMERA_0 Settings
|
|
|
|
setglobal('li01_city_posX_gen', "59.65879")
|
|
setglobal('li01_city_posY_gen', "46.31464")
|
|
setglobal('li01_city_posZ_gen', "97.57275")
|
|
|
|
setglobal('li01_city_fovh_gen', "29.5")
|
|
setglobal('li01_city_hvaspect_gen', "1.31")
|
|
setglobal('li01_city_nearplane_gen', "20")
|
|
setglobal('li01_city_farplane_gen', "7000")
|
|
|
|
|
|
-- Li01 City Camera_0 Widescreen "Fix"
|
|
|
|
-- fovh = 29.5,
|
|
-- hvaspect = 1.31,
|
|
-- nearplane = 20,
|
|
-- farplane = 7000
|
|
-- pos = { 59.65879, 46.31464, 97.57275 },
|
|
|
|
-- Li01 Bar Camera_0
|
|
|
|
-- fovh = 35,
|
|
-- hvaspect = 1.333333,
|
|
-- nearplane = 0.5,
|
|
-- farplane = 100
|
|
|
|
-- Li01 City Camera_0 Vanilla
|
|
|
|
-- fovh = 29.5,
|
|
-- hvaspect = 1.333333,
|
|
-- nearplane = 20,
|
|
-- farplane = 7000
|
|
-- pos = { 59.65879, 56.31464, 97.57275 }
|
|
|
|
-- Function to create global variables for dx Voice lines
|
|
dxsnd = function(snd_id)
|
|
local sndvar = "dx_" .. tostring(snd_id) .. "_" .. tostring(dx_gen)
|
|
setglobal(snd_id, sndvar)
|
|
end
|
|
|
|
-- Function to create global variables for dx REM Voice lines
|
|
dxREMsnd = function(snd_id)
|
|
local sndvar = "dx_REM_" .. tostring(snd_id) .. "_" .. tostring(dx_gen)
|
|
setglobal(snd_id, sndvar)
|
|
end
|
|
|
|
-- Function to create global variables for dx Voice lines
|
|
vdxsnd = function(snd_id)
|
|
local sndvar = "dx_" .. tostring(snd_id) .. "_" .. tostring(voice_gen)
|
|
setglobal(snd_id, sndvar)
|
|
end
|
|
|
|
-- Function to create global variables for VoiceProfile lines
|
|
vpsnd = function(snd_id)
|
|
local sndvar = "VoiceProfile_$BGCS_" .. tostring(voice_gen) .. "_" .. tostring(snd_id)
|
|
setglobal(snd_id, sndvar)
|
|
end
|
|
|
|
-- Function to create global variables for Body lines
|
|
scanm = function(anm_id)
|
|
local anmvar = "Sc_" .. tostring(body_gen) .. "_" .. tostring(anm_id)
|
|
setglobal(anm_id, anmvar)
|
|
end
|
|
|
|
-- Function to create global variables for Body lines
|
|
scdxanm = function(anm_id)
|
|
local anmvar = "Sc_dx_" .. tostring(anm_id) .. "_" .. tostring(voice_gen)
|
|
setglobal(anm_id, anmvar)
|
|
end
|
|
|
|
-- This Config File effecting Character Animation References, Planet & Station Enviorments and Mission Cutscenes.
|
|
-- Files in DATA\SCRIPTS GCS, BASES and EXTRAS using these defined globals.
|
|
-- Included with dofile('..\\EXE\\REM\\Lua\\DYNAMIC\\config.lua') in .thn scripts.
|