12 lines
320 B
Plaintext
12 lines
320 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPCNewbie = GetEnteringObject();
|
||
|
int oPCHitDice = GetHitDice(oPCNewbie);
|
||
|
string Newbie_Message = "Maybe you should get another level or two untill you venture into the wide world.";
|
||
|
|
||
|
if (oPCHitDice <= 1)
|
||
|
FloatingTextStringOnCreature(Newbie_Message, oPCNewbie);
|
||
|
|
||
|
else{}
|
||
|
}
|