blob: 9d502be3d80dc4816f35553f3db849ff95ea4c55 (
plain) (
tree)
|
|
// Evol functions.
// Author:
// 4144
// Description:
// Function checking the client version and reports if it is too old.
function script checkclientversion {
if (ClientVersion > 20) 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/ or http://manaplus.org/", 9);
next;
return;
}
|