Initial upload
Initial upload
This commit is contained in:
24
_module/nss/messagewarning.nss
Normal file
24
_module/nss/messagewarning.nss
Normal file
@@ -0,0 +1,24 @@
|
||||
//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));
|
||||
|
||||
}
|
Reference in New Issue
Block a user