Difference between revisions of "EVENT TYPE CHARGEN SELECT RACE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(parameters from sys_chargen)
Line 2: Line 2:
 
{{event
 
{{event
 
|sourcefile=script.ldf
 
|sourcefile=script.ldf
|when=
+
|when=This fires when the player selects the icon corresponding to any of the available races.
 +
|int0name=nRace
 +
|int0desc= Constant RACE_* integer
 +
|int1name=bSelected
 +
|int1desc= 1: race selected, 0: race unselected (unused)
 
|from=
 
|from=
 
|to=
 
|to=

Revision as of 21:37, 19 August 2009

The documentation on this page is incomplete, obsolete, or otherwise in need of a thorough review. The current content may provide a good starting point for this, but do not rely on its accuracy when using it to design content.

Source:
script.ldf
Sent when:
This fires when the player selects the icon corresponding to any of the available races.
Sent from:
Sent to:
Parameters:
  • Integer 0: Constant RACE_* integer
  • Integer 1: 1: race selected, 0: race unselected (unused)

Usage

case EVENT_TYPE_CHARGEN_SELECT_RACE:
{
int nRace = GetEventInteger(ev, 0); // Constant RACE_* integer
int bSelected = GetEventInteger(ev, 1); // 1: race selected, 0: race unselected (unused)

// insert event-handling code here

break;
}