17 lines
284 B
Plaintext
17 lines
284 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
* call_onheartbeat.nss
|
||
|
*
|
||
|
* OnHeartbeat event caller
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ExecuteScript("prc_onheartbeat", OBJECT_SELF);
|
||
|
|
||
|
ExecuteScript("onheartbeat", OBJECT_SELF);
|
||
|
|
||
|
}
|