blob: bd539dd47fe0edc6343a5452b2eee2ab2a0083c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Evol functions.
// Author:
// 4144
// Description:
// Function checking the client version and reports if it is too old.
function script CheckClientVersion {
if (ClientVersion > 1) return;
mesn "Narrator";
mes col("Warning.", 9);
mes col("Warning.", 9);
mes col("Warning: You are using an old client.", 9);
next;
mes col("Not all features will work.", 9);
next;
mes col("Please install the new client from http://www.evolonline.org/", 9);
next;
return;
}
|