15 lines
314 B
Plaintext
15 lines
314 B
Plaintext
#include "nw_i0_plot"
|
|
void main()
|
|
{
|
|
object oStore = GetNearestObjectByTag("FV_SHOP_SPECIAL");
|
|
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
|
|
{
|
|
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
|
|
}
|
|
else
|
|
{
|
|
SpeakString("Hmmm...I seem to have misplaced my wares...call the module builder!");
|
|
}
|
|
}
|
|
|