RoT2_PRC8/_module/nss/hif_onmoduleload.nss

21 lines
625 B
Plaintext
Raw Permalink Normal View History

2023-09-25 18:13:22 -04:00
// prc_onmodload,trin_modload
/////////////////////////////////////////////////////////////////////
//
// This script has been auto-generated by HakInstaller to call
// multiple handlers for the onmoduleload event.
//
/////////////////////////////////////////////////////////////////////
#include "nui_i_main"
2023-09-25 18:13:22 -04:00
void main()
{
SetEventScript(GetModule(), EVENT_SCRIPT_MODULE_ON_NUI_EVENT, "mod_events");
SetEventScript(GetModule(), EVENT_SCRIPT_MODULE_ON_PLAYER_TARGET, "mod_events");
NUI_Initialize();
NUI_HandleEvents();
ExecuteScript("prc_onmodload", OBJECT_SELF);
2023-09-25 18:13:22 -04:00
ExecuteScript("trin_modload", OBJECT_SELF);
}