18 lines
593 B
Plaintext
18 lines
593 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName at_001
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 2015-10-22 18:52:15
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
|
|
// Otwórz sklep t¹ etykiet¹ lub poinformuj u¿ytkownika, ¿e sklep nie jest dostêpny.
|
|
object oStore = GetNearestObjectByTag("all_items");
|
|
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
|
|
OpenStore(oStore, GetPCSpeaker());
|
|
else
|
|
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
|
|
}
|