Files
HeroesStone_PRC8/_module/nss/open_tavernstore.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

13 lines
254 B
Plaintext

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