11 lines
247 B
Plaintext
11 lines
247 B
Plaintext
// prison_guard_oe1
|
|
void main()
|
|
{
|
|
object oPC=GetEnteringObject();
|
|
object oPG=GetNearestObjectByTag("MUNICIPALPG",oPC,1);
|
|
if (GetIsPC(oPC))
|
|
{
|
|
AssignCommand(oPG,SpeakString("Come no further by order of the municipality!!"));
|
|
}
|
|
}
|