Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

42 lines
1.8 KiB
Plaintext

////////////////////////////////////////////////////////////////////////////////
//
// Wrapper
// wrap_mod_onenter
// by Don Anderson
//
////////////////////////////////////////////////////////////////////////////////
void main()
{
ExecuteScript("pwdb_mod_onclex", OBJECT_SELF);
ExecuteScript("prc_onenter", OBJECT_SELF);
ExecuteScript("alt_givewidget", OBJECT_SELF);
ExecuteScript("evaliprops", OBJECT_SELF);
ExecuteScript("fes_mod_onenter",OBJECT_SELF);// Strip and XP and Gold On Enter
ExecuteScript("opw_mod_onenter",OBJECT_SELF);//Unique ID and OPW Misc OnEnter Stuff
//:: Add PRC8 journal entries
AddJournalQuestEntry("JRNL_XPCHART", 1, OBJECT_SELF, FALSE, FALSE, FALSE);
AddJournalQuestEntry("JRNL_LA_BUYOFF", 1, OBJECT_SELF, FALSE, FALSE, FALSE);
//From Master Configuration opw_mod_onload
//int nDeathChoose = GetLocalInt(GetModule(),"DEATHCHOOSE");
//if(nDeathChoose == 1) ExecuteScript("bs_mod_onenter",OBJECT_SELF); //Soul Rune and Binding Stones System
ExecuteScript("bs_hpstatus",OBJECT_SELF);//Persistent Hitpoints and Bleeding Status
//From Master Configuration opw_mod_onload
//int nHTFGLOBAL = GetLocalInt(GetModule(),"HTFGLOBAL");
//if(nHTFGLOBAL == 1) ExecuteScript("htf_mod_onenter",OBJECT_SELF); //HTF System
//From Master Configuration opw_mod_onload
//int nCRAFTGLOBAL = GetLocalInt(GetModule(),"CRAFTGLOBAL");
//if(nCRAFTGLOBAL == 1) ExecuteScript("cr_mod_onenter",OBJECT_SELF); //Education/Crafting System
ExecuteScript("opw_lib_onenter",OBJECT_SELF); //Olander's PW Library
//ExecuteScript("farm_mod_enter",OBJECT_SELF); // Farming System
//ExecuteScript("doa_mod_enter",OBJECT_SELF); //DOA Gold Encumberance
//ExecuteScript("wdm_mod_onenter",OBJECT_SELF); //Dead and Wild Magic System
}