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

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