MMD_PRC8/_module/nss/plo_townport_usr.nss
Jaysyn904 adeff59f82 Initial commit
Initial commit.
2024-08-02 23:18:00 -04:00

20 lines
571 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// Placeable Object Event: OnUserDefined
////////////////////////////////////////////////////////////////////////////////
void main()
{
int nUserEvent = GetUserDefinedEventNumber();
//----------------------------------------------------------------------------
if (nUserEvent == 9000)
{
PlaySound("al_mg_portal1");
DelayCommand(7.7,SignalEvent(OBJECT_SELF,EventUserDefined(9000)));
}
//----------------------------------------------------------------------------
}