Added XP & LA journal entries

Added XP & LA journal entries.  Full compile.
This commit is contained in:
Jaysyn904
2023-09-25 21:43:15 -04:00
parent 7770601b3e
commit 9c38ad9c6b
196 changed files with 137 additions and 27 deletions

View File

@@ -8,11 +8,19 @@
void main()
{
SendMessageToPC (GetEnteringObject(), "This server is under active development and could go down arbitrarily. Admin will try to give notice beforehand.");
//:: Declare major variables
object oPC = GetEnteringObject();
//: Add system journal entries
AddJournalQuestEntry("xprules", 1, oPC, FALSE, FALSE, FALSE);
AddJournalQuestEntry("lvl_adj", 1, oPC, FALSE, FALSE, FALSE);
//:: Send Under Construction message
SendMessageToPC(oPC, "This server is under active development and could go down arbitrarily. Admin will try to give notice beforehand.");
ExecuteScript("prc_onenter", OBJECT_SELF);
ExecuteScript("_oncliententer", OBJECT_SELF);
AssignCommand(oPC, DelayCommand (1.0, ClearAllActions(TRUE)));
AssignCommand(oPC, DelayCommand(1.2, PlayAnimation(ANIMATION_LOOPING_TALK_NORMAL, 1.0, 0.5)));
}