2024-09-01 14:11:15 -04:00
|
|
|
#include "nw_i0_plot"
|
|
|
|
void main()
|
|
|
|
{
|
2024-09-16 23:40:48 -04:00
|
|
|
object oStore = GetNearestObjectByTag("CraftToolMerchant");
|
2024-09-01 14:11:15 -04:00
|
|
|
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
|
|
|
|
{
|
|
|
|
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
|
|
|
|
}
|
|
|
|
}
|