summaryrefslogtreecommitdiff
path: root/npc/functions/clientversion.txt
blob: 9e9eb4cd2f048be2e4fff467406cdc2b1deb9ff2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Evol scripts.
// Author:
//    4144
// Description:
//    Function checking the client version and reports if it is too old.

function	script	CheckClientVersion	{
    if (getclientversion("") > 3) return;
    mes "Warning:";
    mes "Warning:";
    mes "Warning: You are using an old client.";
    next;
    mes "Not all features will work.";
    next;
    mes "Please install the new client from http://www.evolonline.org/";
    next;
}