Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2023-09-25 20:24:01 -04:00
parent 4e16ca63ca
commit 5197ad9a4d
7741 changed files with 5391820 additions and 0 deletions

View 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));
}