- Joined
- Jun 26, 2008
- Messages
- 145
- Reaction score
- 0
Got to 'GuildOperationHandler.java'
Than find,
Change the "if (name.length() < 3 || name.length() > 12)"
Change those to whatever you want. Enjoy.
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.