void main()
{
    // Replace 'your_store_resref' with the actual resref for the store you want to open
    string sStoreResref = "cas_vipbar"; 
    object oPC = GetPCSpeaker(); // Get the player who is speaking/triggering the script

    // Create the store object from the resref at the location of the PC
    object oStore = CreateObject(OBJECT_TYPE_STORE, sStoreResref, GetLocation(oPC));

    // Check if the store was created successfully
    if (GetIsObjectValid(oStore))
    {
        // If the store is valid, open it
        OpenStore(oStore, oPC);
    }
    else
    {
        // If the store could not be created, speak a string indicating failure
        ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
    }
}
