summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2012-12-01 02:00:18 +0100
committerReid <reidyaro@gmail.com>2012-12-01 02:00:18 +0100
commit665fe52e08856d940be111360a2008873bf32e12 (patch)
treebb95e56e4c644e5315f05d59953e52cc436b8b81
parente2e80fd74b3cacf6ee8135dde27eeec044c2100b (diff)
downloadserverdata-665fe52e08856d940be111360a2008873bf32e12.tar.gz
serverdata-665fe52e08856d940be111360a2008873bf32e12.tar.bz2
serverdata-665fe52e08856d940be111360a2008873bf32e12.tar.xz
serverdata-665fe52e08856d940be111360a2008873bf32e12.zip
Add narrator dialogues in clientversion function.
-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;
+
}