Difference between revisions of "RemoveAllAddedVariables"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Jazzisparis
(Created page with "{{Function |origin = JIP |summary = Removes all variables added by AddScriptVariable to the calling reference's/quest's script or, if neither are specified, removes all...")
 
imported>Jazzisparis
 
Line 1: Line 1:
{{Function
{{Function
  |origin = JIP
  |origin = JIP
  |summary = Removes all variables added by [[AddScriptVariable]] to the calling reference's/quest's script or, if neither are specified, removes all variables added to any script.
  |summary = Removes all variables added with [[AddScriptVariable]] to the calling reference's/quest's script by the mod calling this function.
  |name = RemoveAllAddedVariables
  |name = RemoveAllAddedVariables
  |referenceType = reference
  |referenceType = reference
Line 13: Line 13:


  RemoveAllAddedVariables VERNovac01
  RemoveAllAddedVariables VERNovac01
RemoveAllAddedVariables
}}
}}
==Notes==
*This will remove only the variables added by the mod calling the function.
==See Also==
==See Also==
*[[RemoveScriptVariable]]
*[[RemoveScriptVariable]]

Latest revision as of 01:00, 25 April 2015

< [[::Category:Functions|Category:Functions]]

A function added by the JIP NVSE Plugin.

Description

Removes all variables added with AddScriptVariable to the calling reference's/quest's script by the mod calling this function.

Syntax

[help]
reference.RemoveAllAddedVariables quest:ref

Example

RaulRef.RemoveAllAddedVariables
RemoveAllAddedVariables VERNovac01

See Also