Difference between revisions of "Game Script"
Jump to navigation
Jump to search
→SKSE Global Functions: Added New SKSE Member Functions.
imported>BlazesRus |
imported>CraftySentinel (→SKSE Global Functions: Added New SKSE Member Functions.) |
||
Line 316: | Line 316: | ||
'''int Function [[GetCameraState - Game|GetCameraState]]()''' | '''int Function [[GetCameraState - Game|GetCameraState]]()''' | ||
*Returns the character's current camera state.(0 - first person;1 - auto vanity;2 - VATS;3 - free;4 - iron sights;5 - furniture;6 - transition;7 - tweenmenu;8 - third person 1;9 - third person 2;10 - horse;11 - bleedout;12 - dragon) | *Returns the character's current camera state.(0 - first person;1 - auto vanity;2 - VATS;3 - free;4 - iron sights;5 - furniture;6 - transition;7 - tweenmenu;8 - third person 1;9 - third person 2;10 - horse;11 - bleedout;12 - dragon) | ||
'''Function [[SaveGame - Game|SaveGame]](string name)''' | |||
*Saves the game with the specified name. | |||
'''Function [[LoadGame - Game|LoadGame]](string name)''' | |||
*Loads the save with the specified name. | |||
'''int Function [[GetNumTintMasks - Game|GetNumTintMasks]]()''' | |||
*Returns the total number of tints for the player. | |||
'''int Function [[GetNthTintMaskColor - Game|GetNthTintMaskColor]](int n)''' | |||
*Returns the color of the Nth tint mask. | |||
'''int Function [[GetNthTintMaskType - Game|GetNthTintMaskType]](int n)''' | |||
*Returns the type of the Nth tint mask. | |||
'''int Function [[SetNthTintMaskColor - Game|GetNthTintMaskColor]](int n, int color)''' | |||
*Sets the color of the Nth tint mask. | |||
'''string Function [[GetNthTintMaskTexturePath - Game|GetNthTintMaskTexturePath]](int n)''' | |||
*Returns the texture path of the Nth tint mask. | |||
'''Function [[SetNthTintMaskTexturePath - Game|SetNthTintMaskTexturePath]](int n)''' | |||
*Sets the texturepath of the Nth tint mask. | |||
'''int Function [[GetNumTintsByType - Game|GetNumTintsByType]](int type)''' | |||
*Returns how many indexes there are for this type. | |||
'''int Function [[GetTintMaskColor - Game|GetTintMaskColor]](int type, int index)''' | |||
*Returns the color for the particular tintMask type and index. | |||
'''Function [[SetTintMaskColor - Game|SetTintMaskColor]](int color, int type, int index)''' | |||
*Sets the tintMask color for the particular type and index | |||
== Member Functions == | == Member Functions == |