RATDOG/_module/nss/sob_examine004.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

13 lines
214 B
Plaintext

//Gives placeable description when opened
void main()
{
object oSelf=OBJECT_SELF;
string sDes=GetDescription(oSelf);
int nDone=GetLocalInt(oSelf,"SPEAKDONE");
if (nDone==TRUE)
return;
SpeakString(sDes);
}