Add voice & animation globals
This commit is contained in:
@@ -12,7 +12,8 @@ setglobal('gcs_state', "off")
|
|||||||
-- CHARACTER Settings
|
-- CHARACTER Settings
|
||||||
|
|
||||||
setglobal('char_gen', "trent")
|
setglobal('char_gen', "trent")
|
||||||
setglobal('gcs_voice', "trent")
|
setglobal('voice_gen', "Trent")
|
||||||
|
setglobal('anm_id', "MLBODY")
|
||||||
setglobal('anm_gen', "stand")
|
setglobal('anm_gen', "stand")
|
||||||
|
|
||||||
-- MISSIONS Settings
|
-- MISSIONS Settings
|
||||||
|
|||||||
@@ -55,8 +55,12 @@ function modifyLuaConfig(filePath)
|
|||||||
lines[i] = "setglobal('char_gen', \"trent\")"
|
lines[i] = "setglobal('char_gen', \"trent\")"
|
||||||
|
|
||||||
-- Change gcs_voice to "trent"
|
-- Change gcs_voice to "trent"
|
||||||
elseif line:find("setglobal%('gcs_voice',") then
|
elseif line:find("setglobal%('voice_gen',") then
|
||||||
lines[i] = "setglobal('gcs_voice', \"trent\")"
|
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"
|
-- Change anm_gen to "stand"
|
||||||
elseif line:find("setglobal%('anm_gen',") then
|
elseif line:find("setglobal%('anm_gen',") then
|
||||||
|
|||||||
Reference in New Issue
Block a user