Added NESS. Hopefully fixed Master of the Void spawn in. Full compile. Updated release archive.
25 lines
848 B
Plaintext
25 lines
848 B
Plaintext
//Put this script OnEnter
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetHitDice(oPC) > 2)
|
|
return;
|
|
|
|
DelayCommand(1.0, FloatingTextStringOnCreature("Welcome to the Underworld!", oPC));
|
|
|
|
DelayCommand(2.0, FloatingTextStringOnCreature("Enjoy the non-stop Action and Adventure!", oPC));
|
|
|
|
DelayCommand(3.0, FloatingTextStringOnCreature("Be sure to read the signs posted and books given to you!", oPC));
|
|
|
|
DelayCommand(4.0, FloatingTextStringOnCreature("Speak with the Master of the Void to enter the Undeworld.", oPC));
|
|
|
|
DelayCommand(5.0, FloatingTextStringOnCreature("If you like playing here, play by the rules, or you won't be permitted to play here.", oPC));
|
|
|
|
//DelayCommand(6.0, FloatingTextStringOnCreature("WARNING! Promoting other Modules or Servers at anytime will get you banned, instantly!", oPC));
|
|
|
|
}
|