Difference between revisions of "GetSourceModIndex"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Geckbot
m (Robot: Automated text replacement (-'''.*'''\r\n +))
imported>Odessa
(expanded)
 
Line 1: Line 1:
{{Function
{{Function
  |origin = FOSE1
  |origin = FOSE1
  |summary = Returns the index of the mod associated with the form
  |summary = Returns the index (load order) of the mod to which the specified form belongs.
  |name = GetSourceModIndex
  |name = GetSourceModIndex
  |returnType = int
  |returnType = int
Line 11: Line 11:
   }}
   }}
}}
}}
==Example==
<pre>
int iModIndex
set iModIndex to GetSourceModIndex SomeRef
</pre>
==See Also==
*[[GetModIndex]]
*[[GetNthModName]]
*[[GetCallingScript]]
[[Category:Debugging]]
[[Category:Functions_(FOSE)]]
[[Category:Functions_(FOSE)]]

Latest revision as of 17:34, 21 July 2014

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

A function added by the Fallout Script Extender.

Description

Returns the index (load order) of the mod to which the specified form belongs.

Syntax

[help]
(int) GetSourceModIndex item:ref

Example

int iModIndex
set iModIndex to GetSourceModIndex SomeRef

See Also