Amon_PRC8/_module/nss/newbie_msg.nss

12 lines
320 B
Plaintext
Raw Normal View History

2025-04-03 19:00:46 -04:00
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{}
}