PGCC_PRC8/_module/nss/vat_openbasic.nss
Jaysyn904 e51634d39b Initial upload
Initial upload.
2024-10-09 14:17:22 -04:00

18 lines
495 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName vat_openbasic
//:://////////////////////////////////////////////
#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("MER_BASIC");
if(GetObjectType(oStore) != OBJECT_TYPE_STORE)
oStore = CreateObject(OBJECT_TYPE_STORE, "mer_basic", GetLocation(OBJECT_SELF));
OpenStore(oStore, GetPCSpeaker());
}