11 lines
262 B
Plaintext
11 lines
262 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
if (GetIsPC ( oPC ) )
|
||
|
{
|
||
|
string message = "Despite the flowers and incense, the smell of this room tells you that this is a privy.";
|
||
|
FloatingTextStringOnCreature( message, oPC, FALSE );
|
||
|
}
|
||
|
}
|