Initial Commit

Initial Commit
This commit is contained in:
Jaysyn904
2025-04-03 11:24:16 -04:00
parent 3ba3cf1b81
commit 5e558169a0
6086 changed files with 1502996 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
////////////////////////////////////////
// Reset Player Score //
////////////////////////////////////////
void main()
{
object oPC = GetPCSpeaker();
object oMod = GetModule();
SetLocalInt(oMod, "scre2_state", 1);
SetLocalInt (oMod,"heav_score", 0);
SetLocalInt (oMod,"hell_score", 0);
SetLocalInt(oMod, "heav_loss", 0);
SetLocalInt(oMod, "hell_loss", 0);
PlaySound("gui_select");
PlaySound("sce_positive");
DelayCommand(1.0, FloatingTextStringOnCreature("** Holy War Score Reset **", oPC));
}