19 lines
359 B
Plaintext
19 lines
359 B
Plaintext
|
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");
|
||
|
}
|
||
|
|
||
|
}
|