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

27 lines
571 B
Plaintext

// set vampire coffin locations
void main()
{
object oOb;
string sMsg;
int nC=0;
int nL=0;
string sCoffinTag="VampireCoffin";
oOb=GetObjectByTag(sCoffinTag,nL);
while(oOb!=OBJECT_INVALID)
{ // count coffins
nC++;
sMsg=sMsg+","+GetName(GetArea(oOb));
nL++;
oOb=GetObjectByTag(sCoffinTag,nL);
} // count coffins
if (nC==0)
{
sMsg="no coffins that can be destroyed in the realm";
}
else
{ // coffins
sMsg="of coffins in the following areas that need to be destroyed"+sMsg;
} // coffins
SetCustomToken(4182004,sMsg);
}