RATDOG/_module/nss/sob_examine004.nss

13 lines
214 B
Plaintext
Raw Normal View History

//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);
}