Aantioch_Infernum/_module/nss/enter_message10.nss

19 lines
359 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
int DoOnce = GetLocalInt(oPC, GetTag(OBJECT_SELF));
int iHd = GetHitDice(oPC);
if (DoOnce==TRUE) return;
SetLocalInt(oPC, GetTag(OBJECT_SELF), TRUE);
if(iHd<=5)
{
SendMessageToPC(oPC, "Hmmmm, I think I should come back when I have more experience at combat");
}
}