Difference between revisions of "EVENT TYPE CHARGEN START"

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

Revision as of 21:05, 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 CREATE or LEVELIP

Usage

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

// 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.