summaryrefslogblamecommitdiff
path: root/npc/functions/clientversion.txt
blob: 064269ab8e88af24ba18288238863f8e499e94f5 (plain) (tree)
1
2
3
4
5
6
7
8
                  
          

               
                                                                        

                                                 
                                       




                                                        
         
                                              
         
                                                                                
         
           
 
// Evol functions.
// Author:
//    4144
// Description:
//    Function checking the client version and reports if it is too old.

function	script	CheckClientVersion	{
    if (getclientversion() > 4) 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;
}