Aschbourne_PRC8/_module/nss/fuddmerch.nss
GetOffMyYarn 7030eb2235 added things
added a crafting tool merchant,
added a training hall (not quite working yet)
fixed crafting issues,
exchanged the small cave area
2024-09-01 14:11:15 -04:00

13 lines
296 B
Plaintext

#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("FuddMerchant");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}
}