Difference between revisions of "EVENT TYPE CHARGEN START"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(parameter from sys_chargen)
m
Line 8: Line 8:
 
|sortkey=CHARGEN
 
|sortkey=CHARGEN
 
|int0name=nMode
 
|int0name=nMode
|int0desc=the mode in which chargen was started, either CREATE or LEVELIP
+
|int0desc=the mode in which chargen was started, either CHARGEN_MODE_CREATE or CHARGEN_MODE_LEVELUP
 
}}
 
}}
  

Revision as of 21:28, 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:
Sent from:
Sent to:
module
Parameters:
  • Integer 0: the mode in which chargen was started, either CHARGEN_MODE_CREATE or CHARGEN_MODE_LEVELUP

Usage

case EVENT_TYPE_CHARGEN_START:
{
int nMode = GetEventInteger(ev, 0); // the mode in which chargen was started, either CHARGEN_MODE_CREATE or CHARGEN_MODE_LEVELUP

// insert event-handling code here

break;
}

A range of event constants (nEvent >= EVENT_TYPE_CHARGEN_START && nEvent <= EVENT_TYPE_CHARGEN_END) that occur during character generation.