18 lines
462 B
Plaintext
18 lines
462 B
Plaintext
|
void main()
|
||
|
{
|
||
|
SetLocalInt(OBJECT_SELF, "AmonTalks", GetLocalInt(OBJECT_SELF, "AmonTalks")+1);
|
||
|
|
||
|
|
||
|
if (GetLocalInt(OBJECT_SELF,"AmonTalks")==4)
|
||
|
{
|
||
|
ActionSpeakString ("You have done well my friends.. Let us continue this somewhere safer... my vessel should collect us soon.");
|
||
|
}
|
||
|
|
||
|
if (GetLocalInt(OBJECT_SELF,"AmonTalks")==4)
|
||
|
{
|
||
|
ActionDoCommand(PlaySound("as_mg_telepout1"));
|
||
|
ActionDoCommand(PlaySound("as_mg_telepout1"));
|
||
|
ExecuteScript("AmonLeaves", OBJECT_SELF);
|
||
|
}
|
||
|
}
|