• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Add On] Dupe

Custom Title Activated
Loyal Member
Joined
Mar 6, 2012
Messages
1,503
Reaction score
213
I'm not sure if this is released yet but people can dupe using groups. When you make a group too long and @save, you will receive a bat error because the group name is too long. Its a pretty simple fix.
Go to net.channel.handler and look for the buddylisthandler
Most sources has it as BuddyListModifyHandler.java
Look for
PHP:
public void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
Under that should show something like this
PHP:
if (group.length() > 16 || addName.length() < 4 || addName.length() > 13) {
For the group.length() > 16, change the 16 to 13. Setting it to 0 will disable adding buddies so don't set it to 0.

Or you can go to sql and change varchar(13) to (16) or higher
 
Last edited:
Custom Title Activated
Loyal Member
Joined
Mar 6, 2012
Messages
1,503
Reaction score
213
Re: Dupe

Doesn't really matter since i doubt that many people know this dupe method plus no one even uses groups. But yes changing varchar in sql to higher number than the group.length() > __ would work as well.
 
Experienced Elementalist
Joined
Aug 20, 2009
Messages
272
Reaction score
49
Re: Dupe

Doesn't really matter since i doubt that many people know this dupe method plus no one even uses groups. But yes changing varchar in sql to higher number than the group.length() > __ would work as well.

Most servers have this I just found about this dupe like last week lol.
 
Custom Title Activated
Loyal Member
Joined
Mar 6, 2012
Messages
1,503
Reaction score
213
Re: Dupe

Most servers have this I just found about this dupe like last week lol.

Well i guess this will help new servers and those leechers i guess lol. I found this out when my bat file started being spammed.
 
Joined
Jun 5, 2010
Messages
567
Reaction score
598
Re: Dupe

Oh yeah I remember this. Luckily for us it was during the v88 beta test that we had this issue so it was forgotten and nothing happened overall. Nice release.
 
Custom Title Activated
Loyal Member
Joined
Jun 30, 2008
Messages
3,451
Reaction score
1,616
Re: Dupe

This isn't the fix. The fix is to change the max length to 17 in the database. Groups can have longer named than 13.

16 or 17, can't really remember.
 
Newbie Spellweaver
Joined
Dec 3, 2011
Messages
99
Reaction score
24
Re: Dupe

This will work on most MoopleDEV based servers.
(So, like every v83 out there, unless they fix it)
"`group` varchar(13) DEFAULT '0'," <-- default on moople

Just change that to 16, lol.


ALTER TABLE `buddies` MODIFY COLUMN `group` VARCHAR(16) NOT NULL DEFAULT 0;
 
Custom Title Activated
Loyal Member
Joined
Mar 6, 2012
Messages
1,503
Reaction score
213
Re: Dupe

This isn't the fix. The fix is to change the max length to 17 in the database. Groups can have longer named than 13.

16 or 17, can't really remember.

This will work on most MoopleDEV based servers.
(So, like every v83 out there, unless they fix it)
"`group` varchar(13) DEFAULT '0'," <-- default on moople

Just change that to 16, lol.


ALTER TABLE `buddies` MODIFY COLUMN `group` VARCHAR(16) NOT NULL DEFAULT 0;

Please read the 3rd post lol
 
Experienced Elementalist
Joined
Aug 20, 2009
Messages
272
Reaction score
49
Re: Dupe

This will work on most MoopleDEV based servers.
(So, like every v83 out there, unless they fix it)
"`group` varchar(13) DEFAULT '0'," <-- default on moople

Just change that to 16, lol.


ALTER TABLE `buddies` MODIFY COLUMN `group` VARCHAR(16) NOT NULL DEFAULT 0;

Thats really what I posted on the first post lol.
 
Legendary Battlemage
Joined
Jun 16, 2011
Messages
610
Reaction score
347
Wow, i was having fun on so many servers with this :/

@Soul - No it wasn't, shut up. You told me yourself you did it the same way OP did it. I told you it was SQL.
 
Back
Top