Difference between revisions of "ScenEdit SetKeyValue"
From Baloogan Campaign Wiki
Line 1: | Line 1: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
ScenEdit_SetKeyValue(['Key'],['Value']) | ScenEdit_SetKeyValue(['Key'],['Value']) | ||
+ | ScenEdit_GetKeyValue(['Key']) --This returns the value last saved by ScenEdit_SetKeyValue | ||
-- This saves a text string into the scenario for later retrieval | -- This saves a text string into the scenario for later retrieval | ||
Revision as of 09:29, 22 November 2014
<syntaxhighlight lang="lua"> ScenEdit_SetKeyValue(['Key'],['Value']) ScenEdit_GetKeyValue(['Key']) --This returns the value last saved by ScenEdit_SetKeyValue -- This saves a text string into the scenario for later retrieval
-- Example ScenEdit_SetKeyValue('Aircraft_With_President_Onboard', 'S-3B Viking #4')
-- ... scenario is saved, Command is closed, Command is reopened, scenario is loaded ... ScenEdit_GetKeyValue('Aircraft_With_President_Onboard') -- This evaluates to 'S-3B Viking #4'
</syntaxhighlight>