NWNDS/nwn_dark_sun/at_grik.nss
Jaysyn904 b01c5cc7db Added PnP Dire Rat.
Added PnP Dire Rat.
2021-07-21 17:48:43 -04:00

14 lines
283 B
Plaintext

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