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!

Release dll fix core upgrade +16-+20 8.5Class

Junior Spellweaver
Joined
Aug 30, 2016
Messages
139
Reaction score
21
qwer01 - Release dll fix core upgrade +16-+20 8.5Class - RaGEZONE Forums

Becarefull guys ~


qwer01 - Release dll fix core upgrade +16-+20 8.5Class - RaGEZONE Forums

qwer01 - Release dll fix core upgrade +16-+20 8.5Class - RaGEZONE Forums

qwer01 - Release dll fix core upgrade +16-+20 8.5Class - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Mar 30, 2013
Messages
82
Reaction score
164
PHP:
BYTE DefEffectTable[21] = { 0x0, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02 };
WriteValue<BYTE>(0x00B72374, MAX_UPGRADE);
WriteValue<BYTE>(0x004C66E5, MAX_UPGRADE);
WriteValue<BYTE>(0x004D8AD4, MAX_UPGRADE);
WriteValue<BYTE>(0x004B7DAE, MAX_UPGRADE);
WriteValue<BYTE>(0x008BEB47, MAX_UPGRADE);
WriteValue<BYTE>(0x004FE7D0, MAX_UPGRADE);
WriteValue<DWORD>(0x004FE7DA, (DWORD)DefEffectTable);

int __stdcall TotalCore(int ItemLevel)
{
   return (ItemLevel > 0xE) ? 5 : ItemLevel / 3 + 1;
}

int UpgradeCore::MaxUpgrade()
{
   return MAX_UPGRADE;
}     

HookJMP (TotalCore, 0x0040AA10);
HookJMP (MaxUpgrade, 0x00432C40);

don't use any dll posted for this. edit your cabalmain using ollydbg or make your own dll.
 
Newbie Spellweaver
Joined
Mar 27, 2022
Messages
65
Reaction score
7
PHP:
BYTE DefEffectTable[21] = { 0x0, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02 };
WriteValue<BYTE>(0x00B72374, MAX_UPGRADE);
WriteValue<BYTE>(0x004C66E5, MAX_UPGRADE);
WriteValue<BYTE>(0x004D8AD4, MAX_UPGRADE);
WriteValue<BYTE>(0x004B7DAE, MAX_UPGRADE);
WriteValue<BYTE>(0x008BEB47, MAX_UPGRADE);
WriteValue<BYTE>(0x004FE7D0, MAX_UPGRADE);
WriteValue<DWORD>(0x004FE7DA, (DWORD)DefEffectTable);

int __stdcall TotalCore(int ItemLevel)
{
   return (ItemLevel > 0xE) ? 5 : ItemLevel / 3 + 1;
}

int UpgradeCore::MaxUpgrade()
{
   return MAX_UPGRADE;
}     

HookJMP (TotalCore, 0x0040AA10);
HookJMP (MaxUpgrade, 0x00432C40);

don't use any dll posted for this. edit your cabalmain using ollydbg or make your own dll.

mybe you have tuts for bike extend or dmg unli
 
Banned
Banned
Joined
May 12, 2020
Messages
48
Reaction score
19
PHP:
BYTE DefEffectTable[21] = { 0x0, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02 };
WriteValue<BYTE>(0x00B72374, MAX_UPGRADE);
WriteValue<BYTE>(0x004C66E5, MAX_UPGRADE);
WriteValue<BYTE>(0x004D8AD4, MAX_UPGRADE);
WriteValue<BYTE>(0x004B7DAE, MAX_UPGRADE);
WriteValue<BYTE>(0x008BEB47, MAX_UPGRADE);
WriteValue<BYTE>(0x004FE7D0, MAX_UPGRADE);
WriteValue<DWORD>(0x004FE7DA, (DWORD)DefEffectTable);

int __stdcall TotalCore(int ItemLevel)
{
   return (ItemLevel > 0xE) ? 5 : ItemLevel / 3 + 1;
}

int UpgradeCore::MaxUpgrade()
{
   return MAX_UPGRADE;
}     

HookJMP (TotalCore, 0x0040AA10);
HookJMP (MaxUpgrade, 0x00432C40);

don't use any dll posted for this. edit your cabalmain using ollydbg or make your own dll.

I have tried to search these addresses of cabalmain and manually change the values referring to my existing cabalmain that has +20 in it but it crashes upon entering the channel.. Just experimenting xD
 
Experienced Elementalist
Joined
Jun 12, 2006
Messages
229
Reaction score
18
I have tried to search these addresses of cabalmain and manually change the values referring to my existing cabalmain that has +20 in it but it crashes upon entering the channel.. Just experimenting xD

Better make it as dll and it will work.
 
Newbie Spellweaver
Joined
Mar 27, 2022
Messages
65
Reaction score
7
if you are a beginner don't do this. please use an easy-to-use file.

if you want to learn, search on google how to make dll, or learn c++

tnx for your advice thats why i ask if theres any guide how to insert in visual
 
Newbie Spellweaver
Joined
May 18, 2021
Messages
95
Reaction score
5
PHP:
BYTE DefEffectTable[21] = { 0x0, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02 };
WriteValue<BYTE>(0x00B72374, MAX_UPGRADE);
WriteValue<BYTE>(0x004C66E5, MAX_UPGRADE);
WriteValue<BYTE>(0x004D8AD4, MAX_UPGRADE);
WriteValue<BYTE>(0x004B7DAE, MAX_UPGRADE);
WriteValue<BYTE>(0x008BEB47, MAX_UPGRADE);
WriteValue<BYTE>(0x004FE7D0, MAX_UPGRADE);
WriteValue<DWORD>(0x004FE7DA, (DWORD)DefEffectTable);

int __stdcall TotalCore(int ItemLevel)
{
   return (ItemLevel > 0xE) ? 5 : ItemLevel / 3 + 1;
}

int UpgradeCore::MaxUpgrade()
{
   return MAX_UPGRADE;
}     

HookJMP (TotalCore, 0x0040AA10);
HookJMP (MaxUpgrade, 0x00432C40);

don't use any dll posted for this. edit your cabalmain using ollydbg or make your own dll.

how to use this code? in visual studio c++ or not?



Thanks vodikatm! work perfect.

sir can you give me some hints to do it?
 
Back
Top