diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-07-11 10:52:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-07-11 10:52:29 -0300 |
commit | fa13b4830d371980da685f528d573089a4cd135c (patch) | |
tree | 4e39fe3825ea0de1c26b2f2f65207bf7b9c66656 | |
parent | cb7f9d7a16a8881bf70524d099de0995da75f53e (diff) | |
download | serverdata-fa13b4830d371980da685f528d573089a4cd135c.tar.gz serverdata-fa13b4830d371980da685f528d573089a4cd135c.tar.bz2 serverdata-fa13b4830d371980da685f528d573089a4cd135c.tar.xz serverdata-fa13b4830d371980da685f528d573089a4cd135c.zip |
Fix typos
-rw-r--r-- | npc/functions/clientversion.txt | 4 | ||||
-rw-r--r-- | npc/functions/hub.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 1511cf016..353ac11f9 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -26,7 +26,7 @@ function script clientupdater { .@v1 = min(1, .@v1-##HARDCORE_JAILTIME+1); if (.@ti > 60000) .@ti = min(60000, .@ti - ((##HARDCORE_JAILTIME+1) * 60000)); - sc_end SC_JAILED; + //sc_end SC_JAILED; sc_start4 SC_JAILED, .@ti, .@v1, .@v2, .@v3, .@v4, 10000, SCFLAG_FIXEDRATE|SCFLAG_FIXEDTICK|SCFLAG_NOAVOID; dispbottom l("Information: Your sentence was reduced in %d minute(s).", (##HARDCORE_JAILTIME-1)); } @@ -38,7 +38,7 @@ function script clientupdater { LOGIN_TIME=gettimetick(2); } // If you're in Jail, show a minor message - if (getmap() == "sec_pri") { + if (getmap() == "sec_pri" && !$HARDCORE) { dispbottom l("You seem to be jailed. We cannot unjail offline players, so please don't logout."); dispbottom l("You have the right to defend yourself if you believe we were wrong. If we find out it's true, you'll receive an apology gift."); dispbottom l("Note: Unless you were doing something REALLY bad which is harmful to player community (eg. scamming, hacking, DDoS'ing, etc.)"); diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 63347206d..09224d858 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -135,7 +135,7 @@ function script HUB_Logout { // TODO: Warp back to Candor or it'll be unplayable // TODO: It could be @jail, but it is buggy .@sentence = ((REBIRTH*0) + BaseLevel)**2; - atcommand("@jailfor "+.@sentence+"m "+strcharinfo(0)); + atcommand("@jailfor "+.@sentence+"mn "+strcharinfo(0)); } // Vanished on Cindy Cave } else if (.@mapa$ == "021-4" && strcharinfo(0) == $@CINDY_HERO$) { |