HoS_PRC8/_mod/_module/nss/track_rmg.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

19 lines
745 B
Plaintext

////////////////////////////////////////////
// track roving merchant caravan
////////////////////////////////////////////
void main()
{
object oMod=GetModule();
object oRMG=GetLocalObject(oMod,"oRMGMerchant");
int nRMGDay=GetLocalInt(oMod,"nRMGDay");
int nDay=GetCalendarDay();
string sMsg="The last activity I noted from the Roving Merchants occurred on day "+IntToString(nRMGDay)+". Today is day "+IntToString(nDay)+".";
if (oRMG!=OBJECT_INVALID)
{ // merchant exists
sMsg=sMsg+" The caravan is currently in the area called "+GetName(GetArea(oRMG))+".";
} // merchant exists
else
{ sMsg=sMsg+"I do not currently sense a roving merchant caravan anywhere in this world."; }
SetCustomToken(81235,sMsg);
}