TєђGëØrge Posted February 4, 2009 Posted February 4, 2009 If you see at config/options.properties it has that # Show server version + license when player enter game. ShowLicense = True And when starting L2JFree Gameserver it also shows a big text of L2JFree you can edit and that too! Just go and open C:\test\l2jfree-core\src\main\java\com\l2jfree\gameserver\L2JfreeInfo.java It has these things /** * */ package com.l2jfree.gameserver; import com.l2jfree.gameserver.model.actor.instance.L2PcInstance; /** * @author noctarius */ public class L2JfreeInfo { public static final void showStartupInfo() { System.out.println(""); System.out.println(""); System.out.println(""); System.out.println(" ___ ___"); System.out.println("/\\_ \\ /'___`\\ __ /'___\\"); System.out.println("\\//\\ \\ /\\_\\ /\\ \\ /\\_\\/\\ \\__/ _ __ __ __"); System.out.println(" \\ \\ \\ \\/_/// /__\\/\\ \\ \\ ,__\\/\\`'__\\/'__`\\ /'__`\\"); System.out.println(" \\_\\ \\_ // /_\\ \\\\ \\ \\ \\ \\_/\\ \\ \\//\\ __//\\ __/"); System.out.println(" /\\____\\/\\______/_\\ \\ \\ \\_\\ \\ \\_\\\\ \\____\\ \\____\\"); System.out.println(" \\/____/\\/_____//\\ \\_\\ \\/_/ \\/_/ \\/____/\\/____/"); System.out.println(" \\ \\____/"); System.out.println(" \\/___/ [starting Version: " + GameServer.getVersionNumber() + "]"); } public static final void versionInfo(L2PcInstance activeChar) { activeChar.sendMessage(":__. :_____:_____:_____:_____:_____:_____:"); activeChar.sendMessage("| |__|___ |__. | __| | __| __|"); activeChar.sendMessage("| | ___| | | __| ) _| __| __|"); activeChar.sendMessage("|_____|_____|_____|__| |__|__|_____|_____|"); activeChar.sendMessage("l2jfree version: "+ GameServer.getVersionNumber() + " license: gpl 3 "); } } I made it like for my server like that! /** * */ package com.l2jfree.gameserver; import com.l2jfree.gameserver.model.actor.instance.L2PcInstance; /** * @author noctarius */ public class L2JfreeInfo { public static final void showStartupInfo() { System.out.println("Welcome to L2 WanteD!!!"); System.out.println("Don't forget to vote for us every 12 hours!"); } public static final void versionInfo(L2PcInstance activeChar) { activeChar.sendMessage("Welcome to L2 WanteD!!!"); activeChar.sendMessage("Don't forget to vote for us every 12 hours!"); } } So what happends... By editing System.out.println("Welcome to L2 WanteD!!!"); you are editing the message at start up of "startGameServer.bat" By editing activeChar.sendMessage("Welcome to L2 WanteD!!!"); you are editing the message that a character takes when he is logged in the server! PS: My server L2WanteD (name taken from the movie) is now offline due to problem with the computer... Quote
Raule Posted February 5, 2009 Posted February 5, 2009 Thanks for guide, i was wondering how to delete that. Quote
Feelmyspells Posted February 5, 2009 Posted February 5, 2009 Good guide,keep on inventing things. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.