Difference between revisions of "RemoveScriptVariable"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Jazzisparis
(Created page with "{{Function |origin = JIP |summary = Removes the specified variable added to the calling reference's/quest's script by AddScriptVariable. |name = RemoveScriptVariable |...")
 
imported>Jazzisparis
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
  |summary = Removes the specified variable added to the calling reference's/quest's script by [[AddScriptVariable]].
  |summary = Removes the specified variable added to the calling reference's/quest's script by [[AddScriptVariable]].
  |name = RemoveScriptVariable
  |name = RemoveScriptVariable
  |returnType = successful:0/1
  |returnType = removed:0/1
  |referenceType = reference
  |referenceType = reference
  |arguments =  
  |arguments =  
Line 20: Line 20:
==See Also==
==See Also==
*[[AddScriptVariable]]
*[[AddScriptVariable]]
*[[RemoveAllAddedVariables]]
*[[HasVariableAdded]]
*[[HasVariableAdded]]
*[[GetVariable]]
*[[GetVariable]]

Latest revision as of 17:51, 5 April 2015

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

A function added by the JIP NVSE Plugin.

Description

Removes the specified variable added to the calling reference's/quest's script by AddScriptVariable.

Syntax

[help]
(removed:0/1) reference.RemoveScriptVariable varName:string quest:ref

Example

RaulRef.RemoveScriptVariable "NewVar"
RemoveScriptVariable "NewVar" VERNovac01

See Also