NWNDS/nwnds_module/ka_kilaristore.nss

12 lines
260 B
Plaintext
Raw Normal View History

void main()
{
object oStore = GetNearestObjectByTag("KilariStore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
}
else
{
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}
}