17 lines
275 B
Plaintext
17 lines
275 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
* call_onexit.nss
|
||
|
*
|
||
|
* OnClientExit event caller
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ExecuteScript("prc_leave", OBJECT_SELF);
|
||
|
|
||
|
ExecuteScript("onclientexit", OBJECT_SELF);
|
||
|
|
||
|
}
|