NWNDS/nwnds_module/ds_basicitems.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

14 lines
282 B
Plaintext

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