Difference between revisions of "Osiris/API/GameEventSet"

From Divinity Engine Wiki
Jump to: navigation, search
m
m (Fixing typo)
Line 2: Line 2:
 
* event '''GameEventSet'''(''(STRING)'''''_Event''')
 
* event '''GameEventSet'''(''(STRING)'''''_Event''')
 
===== Description =====
 
===== Description =====
The '''GameEventset'''("'''''GAMEEVENT_GameStarted'''''") is the first story event that gets thrown after the game engine has been initialised when starting a new game.
+
The '''GameEventSet'''("'''''GAMEEVENT_GameStarted'''''") is the first story event that gets thrown after the game engine has been initialised when starting a new game.
 
===== Parameters =====
 
===== Parameters =====
 
* '''_Event''': This parameter is currently always '''''GAMEEVENT_GameStarted'''''.
 
* '''_Event''': This parameter is currently always '''''GAMEEVENT_GameStarted'''''.

Revision as of 03:33, 3 December 2017

Full Definition(s)
  • event GameEventSet((STRING)_Event)
Description

The GameEventSet("GAMEEVENT_GameStarted") is the first story event that gets thrown after the game engine has been initialised when starting a new game.

Parameters
  • _Event: This parameter is currently always GAMEEVENT_GameStarted.
Notes
  • At this point, no level or objects have been loaded yet, nor have any users been added to the game. Hence, do not reference any objects nor perform any calls that refer to players or users at this point.
See Also