11 lines
240 B
Plaintext
11 lines
240 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
if (GetIsPC ( oPC ) )
|
||
|
{
|
||
|
string message = "You enter a larder, filled with all kinds of delicious foodstuff.";
|
||
|
FloatingTextStringOnCreature( message, oPC, FALSE );
|
||
|
}
|
||
|
}
|