EVENT TYPE WORLD MAP CLOSED

From Dragon Age Toolset Wiki
Jump to: navigation, search
Source:
script.ldf
Sent when:
Sent from:
Sent to:
module
Parameters:
  • Integer 0: close type, 0 for cancel, 1 for travel.

Usage

case EVENT_TYPE_WORLD_MAP_CLOSED:
{
int nCloseType = GetEventInteger(ev, 0); // close type, 0 for cancel, 1 for travel.

// insert event-handling code here

break;
}