Difference between revisions of "EVENT TYPE CHARGEN IMPORT HERO"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (remove redundant category)
 
Line 11: Line 11:
 
}}
 
}}
 
[[Category:Character generation]]
 
[[Category:Character generation]]
[[Category:Event types|CHARGEN_IMPORT_HERO]]
 
[[Category:Module events|CHARGEN_IMPORT_HERO]]
 

Latest revision as of 00:46, 12 February 2010

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;
}