viewing paste Unknown #383 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
//===== eAthena Script ============================================
//= Motd Script
//===== By: =======================================================
//= KelvinLoh
//===== Current Version: ==========================================
//= TXT Final Version
//===== Compatible With: ==========================================
//= Any TXT eAthena Version
//===== Warning: ==================================================
// DO NOT EDIT ANYTHING IF YOU DON'T KNOW SCRIPTING
//=================================================================
 
-   script  Motd    -1,{
OnPCLoginEvent:
 
//=================================================================
// Put you Server Name
//=================================================================
 
set @server_name$,"You Ragnarok";
 
//=================================================================
// Put you Website and Forum 
//=================================================================
 
set @server_web$,"http://you_domain.com";
set @server_forum$,"http://you_domain.com/forum";
 
//=================================================================
// Put you WOE Times
//=================================================================
 
set @server_woe$,"Every [ Tuesday ] and [ Saturday ] Time [ 2100 ~ 2300 ]";
 
//=================================================================
// Put you GMT Times
//=================================================================
 
set @server_gmt$,"GMT +8";
 
//=================================================================
// STOP EDIT BELOW HERE, IF YOU DON'T KNOW
//=================================================================
 
if (getgmlevel() >=90) goto admin;
if (getgmlevel() >=60) goto master;
    dispbottom "[ :+: "+@server_name$+" :+: ]";
    if (sex == 1) {dispbottom "Hai! Gentleman " + strcharinfo(0) + ", Welcome to "+@server_name$+"";} else {dispbottom "Hai! Ladies " + strcharinfo(0) + ", Welcome to "+@server_name$+""; };
    dispbottom "The Game Master Team wish you a lot of fun on our server and meet new friends.";
    dispbottom "[ :+: Information :+: ]---------------------------------------------------------------------";
    dispbottom "Website : "+ @server_web$ +"";
    dispbottom "Forum : "+@server_forum$+"";
    dispbottom "[ :+: Warning :+: ]-------------------------------------------------------------------------";
    dispbottom "-Never Trade use Real item or Reload card.";
    dispbottom "-Do not give you Id and password to Anyone including GM.";
    dispbottom "-Do not use any program try to hack.";
    dispbottom "-Do not Scam other player.";
    dispbottom "-Please report any bugs to GM you find.";
    dispbottom "-Please make sure you follow all the Rule and don't break any Rule.";
    dispbottom "If you Break Any Rule, Game Master will take Action.";
    dispbottom "[ :+: War Of Emperium :+: ]-----------------------------------------------------------------";
    dispbottom  @server_woe$;
    dispbottom "[ :+: Server Status :+: ]-------------------------------------------------------------------";
    dispbottom "Time: [" + gettime(3) + " : " + gettime(2) + " : " + gettime(1) + "] Date: [" + gettime(5) + " / " + gettime(6) + " / " + gettime(7) + "] [ "+@server_gmt$+" ]";
    if (!agitcheck()) {dispbottom "War Of Emperium Status: [ The War Of Emperium is over! ]";} else {dispbottom "War Of Emperium Status: [ The War Of Emperium has begun! ]"; };
    dispbottom "Now Have [ "+ getusers(1) +" ] Player Online";
    close;
 
master:
    dispbottom "[ :+: "+@server_name$+" :+: ]";
    dispbottom "Welcome to "+@server_name$+", Game Master " + strcharinfo(0) + " [ GM LV " +getgmlevel()+ " ]";
    dispbottom "Read Here Ever Time You Login";
    dispbottom "[ :+: Information :+: ]---------------------------------------------------------------------";
    dispbottom "Website : "+ @server_web$ +"";
    dispbottom "Forum : "+@server_forum$+"";
    dispbottom "[ :+: Warning :+: ]-------------------------------------------------------------------------";
    dispbottom "-Do not Give any items to the player without My Permission.";
    dispbottom "-Do not Start PVP/GVG at town without My Permission.";
    dispbottom "-Do not Start Guild war without my permission.";
    dispbottom "-Do not Spam the Mobs in the game without My Permission.";
    dispbottom "-Do not Ask Any player Id,password and Item.";
    dispbottom "-Do Not Scam Player.";
    dispbottom "-Do Not abuse your @commands.";
    dispbottom "-Please make sure you follow all the Rule and don't break any Rule.";
    dispbottom "If you Break Any Rule, Administrator will take Action.";
    dispbottom "[ :+: War Of Emperium :+: ]-----------------------------------------------------------------";
    dispbottom  @server_woe$;
    dispbottom "[ :+: Server Status :+: ]-------------------------------------------------------------------";
    dispbottom "Time: [" + gettime(3) + " : " + gettime(2) + " : " + gettime(1) + "] Date: [" + gettime(5) + " / " + gettime(6) + " / " + gettime(7) + "] [ "+@server_gmt$+" ]";
    if (!agitcheck()) {dispbottom " War Of Emperium Status: [ The War Of Emperium is over! ]";} else {dispbottom " War Of Emperium Status: [ The War Of Emperium has begun! ]"; };
    dispbottom "Now Have [ "+ getusers(1) +" ] Player Online";
    close;
 
admin:
    dispbottom "[ :+: "+@server_name$+" :+: ]";
    dispbottom "Welcome to "+@server_name$+", Administrator " + strcharinfo(0) + " [ GM LV " +getgmlevel()+ " ]";
    dispbottom "[ :+: Information :+: ]---------------------------------------------------------------------";
    dispbottom "Website : "+ @server_web$ +"";
    dispbottom "Forum : "+@server_forum$+"";
    dispbottom "[ :+: War Of Emperium :+: ]-----------------------------------------------------------------";
    dispbottom  @server_woe$;
    dispbottom "[ :+: Server Status :+: ]-------------------------------------------------------------------";
    dispbottom "Time: [" + gettime(3) + " : " + gettime(2) + " : " + gettime(1) + "] Date: [" + gettime(5) + " / " + gettime(6) + " / " + gettime(7) + "] [ "+@server_gmt$+" ]";
    if (!agitcheck()) {dispbottom " War Of Emperium Status: [ The War Of Emperium is over! ]";} else {dispbottom " War Of Emperium Status: [ The War Of Emperium has begun! ]"; };
    dispbottom "Now Have [ "+ getusers(1) +" ] Player Online";
    close;
}
Viewed 766 times, submitted by Guest.