summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/functions/clientversion.txt13
1 files changed, 8 insertions, 5 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt
index 9e9eb4cd..5d20e4f7 100644
--- a/npc/functions/clientversion.txt
+++ b/npc/functions/clientversion.txt
@@ -6,12 +6,15 @@
function script CheckClientVersion {
if (getclientversion("") > 3) return;
- mes "Warning:";
- mes "Warning:";
- mes "Warning: You are using an old client.";
+
+ mesn "Narrator";
+ mes col("Warning.", 9);
+ mes col("Warning.", 9);
+ mes col("Warning: You are using an old client.", 9);
next;
- mes "Not all features will work.";
+ mes col("Not all features will work.", 9);
next;
- mes "Please install the new client from http://www.evolonline.org/";
+ mes col("Please install the new client from http://www.evolonline.org/", 9);
next;
+
}