diff options
-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", |