MMD_PRC8/_module/nss/open_shop.nss
Jaysyn904 adeff59f82 Initial commit
Initial commit.
2024-08-02 23:18:00 -04:00

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);
}