17 lines
400 B
Plaintext
17 lines
400 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastHostileActor();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
int DoOnce = GetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF));
|
||
|
|
||
|
if (DoOnce==TRUE) return;
|
||
|
|
||
|
SetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF), TRUE);
|
||
|
|
||
|
AssignCommand(GetObjectByTag("Sulirak"), ActionSpeakString("I Sssseeeee you Kryxssssss... Decssssssscieved.. Too late.. Rall hasss awakened, you will all be dessstroyed.."));
|
||
|
|
||
|
}
|