Added Daz's persistent NUI storage. Added instanced player room at the Inn of the Flying Monkey. Added PnP cockatrice & dire weasel. Full compile.
13 lines
214 B
Plaintext
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);
|
|
}
|