LoD_PRC8/_module/nss/fall_book_store.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

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