21 lines
694 B
Plaintext
21 lines
694 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName open_shop
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 1/9/2006 3:04:46 AM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_plot"
|
|
|
|
void main()
|
|
{
|
|
|
|
// Either open the store with that tag or let the user know that no store exists.
|
|
string sTag = GetTag(OBJECT_SELF)+"_shop";
|
|
object oStore = GetNearestObjectByTag(sTag);
|
|
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
|
|
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
|
|
else
|
|
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
|
|
}
|