Changing Guild Name Length

Status
Not open for further replies.
Junior Spellweaver
Joined
Jun 26, 2008
Messages
145
Reaction score
0
Got to 'GuildOperationHandler.java'

Than find,

Code:
public class GuildOperationHandler extends AbstractMaplePacketHandler {
	private boolean isGuildNameAcceptable(String name) {
		if (name.length() < 3 || name.length() > 12)
			return false;

Change the "if (name.length() < 3 || name.length() > 12)"

Change those to whatever you want. Enjoy.
 
Re: [Release] Changing Guild Name Length

It's a guide.
And confirm that it works.
 
Re: [Release] Changing Guild Name Length

O.o Nice... I guess you get a cookie...

andrew667 - Changing Guild Name Length - RaGEZONE Forums
 
Re: [Release] Changing Guild Name Length

np, don't make it too long or it'll go all the way across the screen, haha.
 
Status
Not open for further replies.
Back