diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-29 00:53:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-29 00:53:49 +0300 |
commit | 3cb2e55352bd49a4250d1304ecc9d103c3a45f86 (patch) | |
tree | 743a63e7a6f411c58a2080142741fd6eaa13da18 | |
parent | de9ea92badd904c5d0e47b42e90d4bd73d79949f (diff) | |
download | serverdata-3cb2e55352bd49a4250d1304ecc9d103c3a45f86.tar.gz serverdata-3cb2e55352bd49a4250d1304ecc9d103c3a45f86.tar.bz2 serverdata-3cb2e55352bd49a4250d1304ecc9d103c3a45f86.tar.xz serverdata-3cb2e55352bd49a4250d1304ecc9d103c3a45f86.zip |
Show warnings to clients with version <= 5.
-rw-r--r-- | npc/functions/clientversion.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 4ecdf34b..aa564f31 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -5,7 +5,7 @@ // Function checking the client version and reports if it is too old. function script checkclientversion { - if (ClientVersion > 1) return; + if (ClientVersion > 5) return; mesn "Narrator"; mes col("Warning.", 9); @@ -14,7 +14,7 @@ function script checkclientversion { next; mes col("Not all features will work.", 9); next; - mes col("Please install the new client from http://www.evolonline.org/", 9); + mes col("Please install the new client from http://www.evolonline.org/ or http://manaplus.org/", 9); next; return; } |