AOC_PRC8/_module/nss/create_temple.nss

11 lines
284 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:24:16 -04:00
void main()
{
string sStoreTag = "M1_STORETEMPLE";
string sStoreRes = "m1_storetemple";
if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID)
{
CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF));
}
SetLocalString(GetPCSpeaker(), "STORE", sStoreTag);
}