added a crafting tool merchant, added a training hall (not quite working yet) fixed crafting issues, exchanged the small cave area
13 lines
296 B
Plaintext
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);
|
|
}
|
|
} |