EVENT TYPE CHARGEN IMPORT HERO

From Dragon Age Toolset Wiki
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:
Import the player character from an existing save file
Sent from:
Sent to:
module
Parameters:
  • Creator: The loaded character

Usage

case EVENT_TYPE_CHARGEN_IMPORT_HERO:
{
object oHero = GetEventCreator(ev); // The loaded character

// insert event-handling code here

break;
}