Rune_PRC8/_module/nss/wrap_mod_onuser.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

36 lines
896 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
//
// Wrapper
// wrap_mod_onuser
// by Don Anderson
//
////////////////////////////////////////////////////////////////////////////////
void main()
{
ExecuteScript("prc_onuserdef",OBJECT_SELF);
int nUDE = GetUserDefinedEventNumber();
//Event 200
if(nUDE == 200) ExecuteScript("opw_pcexport",OBJECT_SELF);//PC Exports
//Event 201
if(nUDE == 201)
//Event 202
if(nUDE == 202) ExecuteScript("opw_db_update",OBJECT_SELF);//Database Updater
//Event 203
if(nUDE == 203)
//Event 204
if(nUDE == 204) ExecuteScript("cr_time_college",OBJECT_SELF);//College Time Clock
//Event 205
if(nUDE == 205) ExecuteScript("cr_time_local",OBJECT_SELF);//Local Time Clock
//Event 206
if(nUDE == 206) ExecuteScript("orw_mod_user",OBJECT_SELF);//Realistic Weather
}