//===== 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; }