diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-14 20:52:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-14 20:52:56 +0300 |
commit | e51e31ef9870970563e5fa9637aefe95fff26e0b (patch) | |
tree | 2c4a5e94304bbd0149bccc0a6e2111bef71f54cc /npc/functions/clientversion.txt | |
parent | efcee71a216f5a9506912af46512bb1d60673a95 (diff) | |
download | serverdata-release2016-03-15.tar.gz serverdata-release2016-03-15.tar.bz2 serverdata-release2016-03-15.tar.xz serverdata-release2016-03-15.zip |
Add known client versions and dates to clientversion script.release2016-03-15
Also warn about old client for versiont <= 7
Diffstat (limited to 'npc/functions/clientversion.txt')
-rw-r--r-- | npc/functions/clientversion.txt | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index aa564f31..2f0dabfc 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -3,9 +3,26 @@ // 4144 // Description: // Function checking the client version and reports if it is too old. +// Known versions: +// 2 Nov 10 2014 +// 3 Nov 28 2014 +// 4 Jan 5 2015 +// 5 Jan 20 2015 +// 6 Feb 17 2015 +// 7 Mar 2 2015 +// 8 May 1 2015 +// 9 Aug 12 2015 +// 10 Aug 16 2015 +// 11 Aug 21 2015 +// 12 Sep 28 2015 +// 14 Oct 15 2015 +// 15 Oct 26 2015 +// 16 Jan 5 2016 +// First supported version: +// 2 function script checkclientversion { - if (ClientVersion > 5) return; + if (ClientVersion > 7) return; mesn "Narrator"; mes col("Warning.", 9); |