diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-03-11 19:53:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-03-11 19:53:11 -0300 |
commit | 8bf463d04ff797b983c3c9c81d45f04ac2ca4361 (patch) | |
tree | ee98991caf8ba3c1cf1ad1d129ed1dd07a6edcb6 | |
parent | 823c0062a65ef37d4472739206017abc8599c513 (diff) | |
download | serverdata-8bf463d04ff797b983c3c9c81d45f04ac2ca4361.tar.gz serverdata-8bf463d04ff797b983c3c9c81d45f04ac2ca4361.tar.bz2 serverdata-8bf463d04ff797b983c3c9c81d45f04ac2ca4361.tar.xz serverdata-8bf463d04ff797b983c3c9c81d45f04ac2ca4361.zip |
Changes requested by \Test_User (or minor fixes for log files)
-rw-r--r-- | npc/014-5-1/objects.txt | 2 | ||||
-rw-r--r-- | npc/024-11/politics.txt | 7 | ||||
-rw-r--r-- | npc/functions/event.txt | 2 |
3 files changed, 7 insertions, 4 deletions
diff --git a/npc/014-5-1/objects.txt b/npc/014-5-1/objects.txt index 38d819e5b..ffbb3b826 100644 --- a/npc/014-5-1/objects.txt +++ b/npc/014-5-1/objects.txt @@ -19,7 +19,7 @@ OnInit: 014-5-1,33,34,0 script Painting#Saggy NPC_NO_SPRITE,{ @qsagratha=@qsagratha|2; mesn; - mesc l("Definitely not suspcious at all."); + mesc l("Definitely not suspicious at all."); if (@qsagratha >= 31) { next; mesn; diff --git a/npc/024-11/politics.txt b/npc/024-11/politics.txt index e21f3094a..4d395edb1 100644 --- a/npc/024-11/politics.txt +++ b/npc/024-11/politics.txt @@ -21,7 +21,10 @@ do else mesc l("Hey, you're an elf, cool! But you still cannot run for office here!"), 1; mesc l("%d more active users are required to unlock Frostia Townhall.", 10-GETUSERSAVG()); - close; + if ($FROSTIA_MAYOR$ == "Jesus Saves" || $FROSTIA_MAYOR$ == "") + close; + else + next; } POL_TownInfo("FROSTIA"); @@ -34,7 +37,7 @@ do select l("Information"), rif(strcharinfo(0) == $FROSTIA_MAYOR$, l("Manage Town")), - rif(#POL_APPLYWEEK != gettimeparam(GETTIME_WEEKDAY) && frally(), l("Apply for the office!")), + rif(#POL_APPLYWEEK != gettimeparam(GETTIME_WEEKDAY) && frally() && GETUSERSAVG() >= 10, l("Apply for the office!")), l("View Candidate List and cast a vote"), l("[Quit]"); diff --git a/npc/functions/event.txt b/npc/functions/event.txt index d04f6ca92..4e084075f 100644 --- a/npc/functions/event.txt +++ b/npc/functions/event.txt @@ -804,7 +804,7 @@ OnClock0000: if (.@dofy && $EVENT$ == "") FYNewEvent(); else - debugmes "\033[1mAnother event is scheduled!"; + debugmes "\033[1mAnother event is scheduled!\033[0m"; } // Handle Valentine Day |