Add Lua Globals

This commit is contained in:
D4rkl1ght3r
2025-08-14 18:35:11 +02:00
parent 09896b3386
commit fb4622efdb
2 changed files with 34 additions and 5 deletions

View File

@@ -54,13 +54,17 @@ function modifyLuaConfig(filePath)
elseif line:find("setglobal%('char_gen',") then
lines[i] = "setglobal('char_gen', \"trent\")"
-- Change gcs_voice to "trent"
-- Change voice_gen to "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 dx_gen to "trent"
elseif line:find("setglobal%('dx_gen',") then
lines[i] = "setglobal('dx_gen', \"trent\")"
-- Change body_gen to "MLBODY"
elseif line:find("setglobal%('body_gen',") then
lines[i] = "setglobal('body_gen', \"MLBODY\")"
-- Change anm_gen to "stand"
elseif line:find("setglobal%('anm_gen',") then