diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-28 23:09:09 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-28 23:09:09 -0300 |
commit | 927a01140289d1841e65801a60f07d0ff7e92daa (patch) | |
tree | 962d182ffa00d08cf1ef788547c6c4584d9cb5ac /npc | |
parent | 475984e7e8798dbf3fe3f9f3085e90fc9c7b61a4 (diff) | |
download | serverdata-927a01140289d1841e65801a60f07d0ff7e92daa.tar.gz serverdata-927a01140289d1841e65801a60f07d0ff7e92daa.tar.bz2 serverdata-927a01140289d1841e65801a60f07d0ff7e92daa.tar.xz serverdata-927a01140289d1841e65801a60f07d0ff7e92daa.zip |
Change clientversion.txt priority from Important to Later.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/commands/language.txt | 2 | ||||
-rw-r--r-- | npc/functions/clientversion.txt | 4 | ||||
-rw-r--r-- | npc/scripts.conf | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/npc/commands/language.txt b/npc/commands/language.txt index 876cd89ea..35a86858d 100644 --- a/npc/commands/language.txt +++ b/npc/commands/language.txt @@ -14,7 +14,7 @@ // function script CMD_lang { - checkclientversion; + callfunc "checkclientversion"; mesq l("Which language do you speak?"); next; asklanguage(LANG_IN_SHIP); diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 79934d9eb..d88e9de2b 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -995,8 +995,8 @@ function script clientupdater { getsavepoint(0) != "005-1" && getsavepoint(0) != "009-1") { // Resave at Candor - callfunc("EnterTown", "Candor"); - callfunc("ReturnTown"); + EnterTown("Candor"); + ReturnTown(); } } // Assign the initial academic titles diff --git a/npc/scripts.conf b/npc/scripts.conf index 417407631..f0b1854fe 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -21,7 +21,6 @@ // Important functions "npc/functions/asklanguage.txt", -"npc/functions/clientversion.txt", "npc/functions/game-rules.txt", "npc/functions/inventoryplace.txt", "npc/functions/scoreboards.txt", @@ -135,6 +134,7 @@ "npc/magic/transmigration.txt", // These are to be proccessed later +"npc/functions/clientversion.txt", "npc/functions/estate2.txt", "npc/functions/hub.txt", "npc/functions/mkbot.txt", |