Difference between revisions of "EVENT TYPE CHARGEN END"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Redirected page to EVENT TYPE CHARGEN START)
 
(information from GUICharGenBase.cpp)
Line 1: Line 1:
#REDIRECT [[EVENT TYPE CHARGEN START]]
+
{{event
 +
|sourcefile=script.ldf
 +
|when=
 +
|from=
 +
|to=module
 +
|tocategory1=module
 +
|sortkey=CHARGEN_END
 +
|object0name=oCreature
 +
|creatorname=oModule
 +
|int0name=nMode
 +
|int1name=nExitPoint
 +
}}
 +
 
 +
[[Category:Character generation]]

Revision as of 20:11, 20 August 2009

Source:
script.ldf
Sent when:
Sent from:
Sent to:
module
Parameters:

Usage

case EVENT_TYPE_CHARGEN_END:
{
object oModule = GetEventCreator(ev); //
int nMode = GetEventInteger(ev, 0); //
int nExitPoint = GetEventInteger(ev, 1); //
object oCreature = GetEventObject(ev, 0); //

// insert event-handling code here

break;
}