Amon_PRC8/_module/nss/newbie_msg.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

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{}
}