EVENT TYPE CHARGEN START

From Dragon Age Toolset Wiki
Revision as of 16:55, 26 October 2009 by BryanDerksen (Talk | contribs) (add the parameter CID-78 mentions on talk)

Jump to: navigation, search

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
  • Object 0: The creature going through character generation.

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
object oCreature = GetEventObject(ev, 0); // The creature going through character generation.

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