Difference between revisions of "GetCurrentScript"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Odessa
(created)
 
imported>Odessa
m (+cat)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Function
{{Function
  |origin = NVSE
  |origin = NVSE
  |summary = Returns the calling script.
  |summary = Returns the current script, the form of the script that called this function.
  |name = GetCurrentScript
  |name = GetCurrentScript
  |returnType = script
  |returnType = script
Line 12: Line 12:
}}
}}
==See Also==
==See Also==
*[[GetCallingScript]] (for the caller of a [[User Defined Function|UDF]])
*[[GetCallingScript]] (for the script that called a [[User Defined Function|UDF]])
[[Category:Functions_(NVSE)]]
[[Category:Functions_(NVSE)]]
[[Category:Script Functions]]

Latest revision as of 05:59, 6 August 2014

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

A function added by the New Vegas Script Extender.

Description

Returns the current script, the form of the script that called this function.

Syntax

[help]
(script) GetCurrentScript 

Example

ref rMe
let rMe := GetCurrentScript

See Also