23 lines
701 B
Plaintext
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);
|
|
}
|