- Joined
- Jul 16, 2008
- Messages
- 94
- Reaction score
- 16
It's being a while since I joined this community and never posted anything useful, now is the time for me to give something back to you all.
The only way so far to change the default server message is to go and edit the file and compile your source or by using the !servermessage command. This is a little mod i did to make editable from the world.properties file. For this is use SeanPack v5.9 but am sure it would work with any repack.
Open File: net.sf.odinms.net.channel.ChannelServer.java:
Around line 91 you will find:
Change it to:
Around line 157 and find:
After that line add:
Around line 184 find:
After that line add:
Save and compile your source.
Open the file world.properties and add this line:
Save and run server.
NOTE:I never register on odinms.de because when I found out about it the site had already being close down or for that matter I didn't event know that this had being done before. I started using OdinMS about a month ago when I register on this site.
The only way so far to change the default server message is to go and edit the file and compile your source or by using the !servermessage command. This is a little mod i did to make editable from the world.properties file. For this is use SeanPack v5.9 but am sure it would work with any repack.
Open File: net.sf.odinms.net.channel.ChannelServer.java:
Around line 91 you will find:
Code:
private String serverMessage = "SeanPack V.5.9 beta. Enjoy~";
Change it to:
Code:
private String serverMessage;
Around line 157 and find:
Code:
moreThanOne = Boolean.parseBoolean(props.getProperty("net.sf.odinms.world.morethanone", "false"));
After that line add:
Code:
serverMessage = props.getProperty("net.sf.odinms.world.serverMessage");
Around line 184 find:
Code:
mesoRate = Integer.parseInt(props.getProperty("net.sf.odinms.world.meso"));
After that line add:
Code:
serverMessage = props.getProperty("net.sf.odinms.world.serverMessage");
Save and compile your source.
Open the file world.properties and add this line:
Code:
#change the server message servermessage
net.sf.odinms.world.serverMessage=Change me
Save and run server.
NOTE:I never register on odinms.de because when I found out about it the site had already being close down or for that matter I didn't event know that this had being done before. I started using OdinMS about a month ago when I register on this site.
Last edited: