17 lines
288 B
Plaintext
17 lines
288 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
* call_onrespawn.nss
|
||
|
*
|
||
|
* OnPlayerRespawn event caller
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ExecuteScript("prc_onrespawn", OBJECT_SELF);
|
||
|
|
||
|
ExecuteScript("onplayerrespawn", OBJECT_SELF);
|
||
|
|
||
|
}
|