13 lines
380 B
Plaintext
13 lines
380 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName vat_opencep
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oStore = GetNearestObjectByTag("MER_CEP2");
|
||
|
if(GetObjectType(oStore) != OBJECT_TYPE_STORE)
|
||
|
oStore = CreateObject(OBJECT_TYPE_STORE, "mer_cep2", GetLocation(OBJECT_SELF));
|
||
|
|
||
|
OpenStore(oStore, GetPCSpeaker());
|
||
|
}
|