REO-EE/_module/nss/start_shop.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

10 lines
222 B
Plaintext

void main()
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
string sShopTag = GetLocalString(oNPC, "SHOP_TAG");
object oShop = GetNearestObjectByTag(sShopTag, oNPC);
OpenStore(oShop, oPC);
}