Add voice & animation globals

This commit is contained in:
D4rkl1ght3r
2025-08-10 00:13:22 +02:00
parent 6d4dbf4bcd
commit 29c999387b
2 changed files with 8 additions and 3 deletions

View File

@@ -12,7 +12,8 @@ setglobal('gcs_state', "off")
-- CHARACTER Settings
setglobal('char_gen', "trent")
setglobal('gcs_voice', "trent")
setglobal('voice_gen', "Trent")
setglobal('anm_id', "MLBODY")
setglobal('anm_gen', "stand")
-- MISSIONS Settings

View File

@@ -55,8 +55,12 @@ function modifyLuaConfig(filePath)
lines[i] = "setglobal('char_gen', \"trent\")"
-- Change gcs_voice to "trent"
elseif line:find("setglobal%('gcs_voice',") then
lines[i] = "setglobal('gcs_voice', \"trent\")"
elseif line:find("setglobal%('voice_gen',") then
lines[i] = "setglobal('voice_gen', \"Trent\")"
-- Change gcs_voice to "trent"
elseif line:find("setglobal%('anm_id',") then
lines[i] = "setglobal('anm_id', \"MLBODY\")"
-- Change anm_gen to "stand"
elseif line:find("setglobal%('anm_gen',") then