increase players buddylist capacity

Newbie Spellweaver
Joined
Jun 11, 2008
Messages
48
Reaction score
0
I dunno if this have been release before cause the search button doesnt work on me ever since ragezone come out with this new layout...

In MapleCharacter.java

Find

Code:
ret.buddylist = new BuddyList([B][COLOR="Red"][SIZE="4"]25[/SIZE][/COLOR][/B]);

Change the 25 to anything you like for example i changed it to 999

Code:
ret.buddylist = new BuddyList([B][COLOR="Red"][SIZE="4"]999[/SIZE][/COLOR][/B]);

Compile,
Then it is done!

Note: This will only increase the buddylist default value to 999. Meaning, only new players or just created character will have the increase buddylist of 999.
For existing characters/players you just need to execute this code in sql depending on what table name it is (credits xphire )

Code:
update characters
set buddylistcapacity = 999

or

Code:
update characters
set buddycapacity = 999


Cheers
 
Last edited:
Re: [Release] Increase players buddylist capacity

You can use a SQL script to change everyone else's capacities to 999. I forgot the script though :\
 
Re: [Release] Increase players buddylist capacity

You can use a SQL script to change everyone else's capacities to 999. I forgot the script though :\
update characters set buddyCapacity = 999;

Also, you may want to edit the default in SQL, the default for buddyCapacity is also 25.
 
Re: [Release] Increase players buddylist capacity

PHP:
update characters
set buddylistcapacity = 999

isnt it

PHP:
update characters 
set buddycapacity = 999
 
Re: [Release] Increase players buddylist capacity

it doesnt past 250 o.o
 
Re: [Release] Increase players buddylist capacity

really ??? it cant pass above 250 buddylist ??

yep ive tried setting my bl to 999 in the database....ingame it goes to 250 only
 
Re: [Release] Increase players buddylist capacity

yep ive tried setting my bl to 999 in the database....ingame it goes to 250 only

Oh... about in game thing its messed up.
My buddylist limit is only shown as 159 in game even though i changed it to 999. But now I have a buddylist of 232/159.. So i think it doesnt matter what the limit in game shown i guess.
 
Re: [Release] Increase players buddylist capacity

Oh... about in game thing its messed up.
My buddylist limit is only shown as 159 in game even though i changed it to 999. But now I have a buddylist of 232/159.. So i think it doesnt matter what the limit in game shown i guess.

maybe...try going above 250 registered
 
Re: [Release] Increase players buddylist capacity

Well it work for guilds? to make the guild have more then 100 ppl?
 
Back