10 lines
222 B
Plaintext
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);
|
|
}
|