23 lines
597 B
Plaintext
23 lines
597 B
Plaintext
//:://////////////////////////////////////////////////
|
|
//:: fall_book_store
|
|
/*
|
|
This is the store that sells the Fallen History book.
|
|
*/
|
|
//:://////////////////////////////////////////////////
|
|
//:: Created By: r3plica
|
|
//:: Created On: 20/01/2005
|
|
//:://////////////////////////////////////////////////
|
|
#include "nw_i0_plot"
|
|
void main()
|
|
{
|
|
object oStore = GetNearestObjectByTag("FallenBook");
|
|
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
|
|
{
|
|
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
|
|
}
|
|
else
|
|
{
|
|
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
|
|
}
|
|
}
|