11 lines
280 B
Plaintext
11 lines
280 B
Plaintext
|
void main()
|
||
|
{
|
||
|
string sStoreTag = "DivineLevel9";
|
||
|
string sStoreRes = "divinelevel9";
|
||
|
if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID)
|
||
|
{
|
||
|
CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF));
|
||
|
}
|
||
|
SetLocalString(GetPCSpeaker(), "STORE", sStoreTag);
|
||
|
}
|