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

23 lines
701 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName open_gemstore
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 2/3/2006 3:52:09 AM
//:://////////////////////////////////////////////
//#include "nw_i0_plot"
void main()
{
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("wandmerch");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
SetStoreMaxBuyPrice(oStore,2500);
}
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}