Initial commit

Initial commit
This commit is contained in:
Jaysyn904
2024-09-13 09:10:39 -04:00
parent 09dc8aec92
commit d1c309ae63
8437 changed files with 8727659 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
////////////////////////////////////////////////////////////////////////////////
//
// 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
}