22 lines
852 B
Plaintext
22 lines
852 B
Plaintext
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Wrapper
|
||
|
// wrap_ar_onenter
|
||
|
// by Don Anderson
|
||
|
//
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#include "spawn_functions"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ExecuteScript("opw_area_onenter",OBJECT_SELF); //Olander's Streetlights and Misc. Area Enter Stuff
|
||
|
ExecuteScript("wdm_ar_onenter",OBJECT_SELF); //Dead and Wild Magic System
|
||
|
ExecuteScript("orw_area_match",OBJECT_SELF); //Olander's Realistic Weather System
|
||
|
ExecuteScript("opw_map_exp_wp",OBJECT_SELF); //Olander's Map Always Exploration
|
||
|
ExecuteScript("opw_map_exp_map",OBJECT_SELF); //Olander's Map Exploration
|
||
|
ExecuteScript("opw_jump_aroen",OBJECT_SELF); //Olander's Map Exploration
|
||
|
|
||
|
Spawn_OnAreaEnter("spawn_orig_hb",10.0,0.0);//NESS NPC Spawn/Respawn System
|
||
|
}
|