19 lines
342 B
Plaintext
19 lines
342 B
Plaintext
#include "hgll_func_inc"
|
|
#include "fky_chat_inc"
|
|
void main()
|
|
{
|
|
|
|
object PC = GetExitingObject();
|
|
object M = GetModule();
|
|
|
|
string Script = GetLocalString(PC, "LetoScript");
|
|
|
|
if( Script != "" )
|
|
{
|
|
SetLocalString(PC, "LetoScript", "");
|
|
LetoScript(Script);
|
|
}
|
|
|
|
Speech_OnClientExit(GetExitingObject());
|
|
}
|