RATDOG/_module/nss/sob_examine003.nss
Jaysyn904 a005da6b51 Added Daz's persistent NUI storage
Added Daz's persistent NUI storage.  Added instanced player room at the Inn of the Flying Monkey.  Added PnP cockatrice & dire weasel.  Full compile.
2023-02-19 01:10:48 -05:00

9 lines
192 B
Plaintext

//Make PC read the description on a door when he interacts with it
void main()
{
object oPC=GetClickingObject();
object oExamine=OBJECT_SELF;
AssignCommand(oPC,ActionExamine(oExamine));
}