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