Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

how to unlimit WordSvr.bin Ep8

Banned
Banned
Joined
Apr 16, 2017
Messages
47
Reaction score
14
Some limit i found
Code:
MAX_ACHIEVEMENT_TITLE_NUM
MAX_OPTION_CORE
MAX_FORCE_CODE
MAX_FORCETOWERDATANUM
MAX_EQUIP_GRADE
MAX_WARPDATANUM
MAX_TERRIDXDATANUM
MAX_MOBSDATANUM
MAX_REPAIRDISCOUNTNUM
MAX_ITEMDATANUM
MAX_REWARD_DATA
MAX_SPECIALITEMTYPENUM
MAX_NPCACTION_NUM
MAX_ACTNPCDATA_NUM
MAX_QUESTDATANUM
MAX_DAILY_QUEST_NUM
MAX_STYLEMASTLEV
MAX_USER
MAX_PETPROP_COUNT
MAX_MOB_PARAM_UNIT_NUM
MAX_MOB_PARAM_COUNT
MAX_LINKMOBDATANUM
MAX_MOBTRGDATANUM
MAX_MOBSKILLDATANUM
MAX_MOBATTACKDATANUM
MAX_USERSKILLDATANUM
MAX_USERSKILLBANKNUM
MAX_SKILLVALUEDATANUM
MAX_SKILLDATANUM
MAX_DCACHESQRLENUM
MAX_MOBSEVTLISTNUM
MAX_TILENUM
MAX_EVENTNPCCOUNT
MAX_MOBSCTXNUM
MAX_MISSNMOBSDROPUNITNUM
MAX_TERRAINDATANUM
MAX_COMMDROPUNITNUM
MAX_EVENTNPCCOUNT
MAX_WARPDATANUM
MAX_VALIDPOSNUM
MAX_USERSKILLBANKNUM
MAX_PETPROP_COUNT
[COLOR=#666666]MAX_CRASH_LIMIT[/COLOR]
[COLOR=#666666]MAX_HACKATTEMPT_COUNT[/COLOR]
[COLOR=#666666]MAX_AUTOCLOSE_MEMORY[/COLOR]
[COLOR=#666666]MAX_HP_VISUAL[/COLOR]
[COLOR=#666666]MAX_MP_VISUAL[/COLOR]
[COLOR=#666666]MAX_DAMAGE_VISUAL[/COLOR]
[COLOR=#666666]MAX_DUNGEON_ENTRY[/COLOR]
[COLOR=#666666]MAX_TG_CHANNEL_COUNT[/COLOR]
[COLOR=#666666]MAX_TG_REWARDS_COUNT
[/COLOR][COLOR=#666666]MAX_GUILD_MEMBER[/COLOR]
[COLOR=#666666]MAX_CLASS_STYLE[/COLOR]
[COLOR=#666666]MAX_ANICODE[/COLOR]
[COLOR=#666666]MAX_MP_LIMIT[/COLOR]
 
Last edited by a moderator:
Skilled Illusionist
Joined
Feb 26, 2013
Messages
346
Reaction score
57
I found
MAX_CRASH_LIMIT
MAX_HACKATTEMPT_COUNT
MAX_AUTOCLOSE_MEMORY
MAX_HP_VISUAL
MAX_MP_VISUAL
MAX_DAMAGE_VISUAL
MAX_DUNGEON_ENTRY
MAX_TG_CHANNEL_COUNT
MAX_TG_REWARDS_COUNT
 
Upvote 0
Banned
Banned
Joined
Apr 16, 2017
Messages
47
Reaction score
14
[QUOTE = joel de paula; 8807471] ข้อ จำกัด เหล่านี้จะได้รับการแก้ไขหรือไม่ [/ QUOTE]

i think so you can do
 
Upvote 0
Joined
Aug 3, 2011
Messages
963
Reaction score
506
Tested extend limit.
Terrain Mob
QuestNum
SkillNum
MobsNum
WarpNum
AnicodeNum
Item limit cannot increased more than 4095, need reallocate memory on cabalmain to support item2.enc
MAX_CLASS_STYLE can increased but need support on database for STYLE
GOODLUCK!!

Some offset was released here long time ago by Mundus.
 
Upvote 0
Junior Spellweaver
Joined
Aug 19, 2012
Messages
162
Reaction score
24
What you need for Change LIMIT_XXX
1. WordSvr.bin - can found in your Centos with install any cabal serverfiles.
2. any HEX editor
3. catch packet limit command.
4. search and decode where its link string in code .bin
5. decode HEX in this string.
6. Edit limit number to new value.
7.Save and testing.

Easy word...but hard work.
Only threory no proof.

p.s sorry bad eng. no my primary language.
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Mar 30, 2013
Messages
82
Reaction score
164
What you need for Change LIMIT_XXX
1. WordSvr.bin - can found in your Centos with install any cabal serverfiles.
2. any HEX editor
3. catch packet limit command.
4. search and decode where its link string in code .bin
5. decode HEX in this string.
6. Edit limit number to new value.
7.Save and testing.

Easy word...but hard work.
Only threory no proof.

p.s sorry bad eng. no my primary language.

The funny thing is that nobody imagines that the compiler allocates the exact amount of memory for that limit, and that to increase the loop to load more .ini strings it is necessary to allocate more memory.
:w00t:
 
Upvote 0
Back
Top