18 lines
465 B
Plaintext
18 lines
465 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
/*
|
||
|
Displays a One Liner response to a plot door
|
||
|
being unable to be opened.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Kevin Jernigan
|
||
|
//:: Created On: 08/26/2003
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
SetLocalInt(OBJECT_SELF, "KJ_L_FEEDBACK",7) ;
|
||
|
SpeakOneLinerConversation();
|
||
|
ActionDoCommand(SetLocalInt(OBJECT_SELF, "KJ_L_FEEDBACK",0));
|
||
|
|
||
|
}
|