12 lines
220 B
Plaintext
12 lines
220 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC;
|
||
|
string Speech;
|
||
|
oPC = GetEnteringObject();
|
||
|
if (GetTag(oPC)=="Roanna" & GetLocalInt(oPC, "DungeonEntered")==0)
|
||
|
{
|
||
|
SetLocalInt(oPC, "DungeonEntered",1);
|
||
|
}
|
||
|
|
||
|
}
|