Difference between revisions of "EVENT TYPE CODEX CHANGED"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (remove redundant category)
 
Line 14: Line 14:
 
|string0name=sCodexResRef
 
|string0name=sCodexResRef
 
}}
 
}}
[[Category:Event types|CODEX_CHANGED]]
 
[[Category:Module events|CODEX_CHANGED]]
 

Latest revision as of 00:55, 12 February 2010

Source:
script.ldf
Sent when:
A codex was added or changed (excludes tutorial codex)
Sent from:
engine
Sent to:
module
Parameters:
  • Integer 0: 1 if the codex is unlocked, else it is an update
  • Integer 1: strref of the codex title
  • Integer 2: strref of the codex desc
  • String 0: [Undocumented]

Usage

case EVENT_TYPE_CODEX_CHANGED:
{
int iPrevious = GetEventInteger(ev, 0); // 1 if the codex is unlocked, else it is an update
int iTitle = GetEventInteger(ev, 1); // strref of the codex title
int iDesc = GetEventInteger(ev, 2); // strref of the codex desc
string sCodexResRef = GetEventString(ev, 0); //

// insert event-handling code here

break;
}