17 lines
280 B
Plaintext
17 lines
280 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
* call_ondeath.nss
|
||
|
*
|
||
|
* OnPlayerDeath event caller
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ExecuteScript("prc_ondeath", OBJECT_SELF);
|
||
|
|
||
|
ExecuteScript("onplayerdeath", OBJECT_SELF);
|
||
|
|
||
|
}
|