LoD_PRC8/_module/nss/fall_book_store.nss

23 lines
597 B
Plaintext
Raw Normal View History

2023-09-21 21:20:34 -04:00
//:://////////////////////////////////////////////////
//:: 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);
}
}