• 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.

[CE] Stat Hack Fix !

Junior Spellweaver
Joined
Dec 10, 2009
Messages
198
Reaction score
103
Here's a small fix for the CE stat stack.

Open DPSrvr.cpp (WS) and look for
Code:
Code:
[COLOR=#660066]CDPSrvr[/COLOR][COLOR=#666600]::[/COLOR][COLOR=#660066]OnModifyStatus[/COLOR][COLOR=#666600]([/COLOR] [COLOR=#660066]CAr[/COLOR] [COLOR=#666600]&[/COLOR] ar[COLOR=#666600],[/COLOR] DPID dpidCache[COLOR=#666600],[/COLOR] DPID dpidUser[COLOR=#666600],[/COLOR] LPBYTE lpBuf[COLOR=#666600],[/COLOR] u_long uBufSize [COLOR=#666600])[/COLOR]
Below
Code:
Code:
[COLOR=#000088]if[/COLOR][COLOR=#666600](([/COLOR]nStrCount [COLOR=#666600]<[/COLOR] [COLOR=#006666]0[/COLOR] [COLOR=#666600]||[/COLOR] nStaCount [COLOR=#666600]<[/COLOR] [COLOR=#006666]0[/COLOR] [COLOR=#666600]||[/COLOR] nDexCount [COLOR=#666600]<[/COLOR] [COLOR=#006666]0[/COLOR] [COLOR=#666600]||[/COLOR] nIntCount [COLOR=#666600]<[/COLOR] [COLOR=#006666]0[/COLOR][COLOR=#666600])[/COLOR] [COLOR=#666600]||[/COLOR]
        [COLOR=#666600]([/COLOR]nStrCount [COLOR=#666600]+[/COLOR] nStaCount [COLOR=#666600]+[/COLOR] nDexCount [COLOR=#666600]+[/COLOR] nIntCount [COLOR=#666600]<=[/COLOR] [COLOR=#006666]0[/COLOR][COLOR=#666600]))[/COLOR] [COLOR=#880000]//¾ç¼ö °Ë»ç ¹× ÇÕÀÌ 0ÀÌÇÏÀÏ °æ¿ì Áß´Ü.[/COLOR]
        [COLOR=#000088]return[/COLOR][COLOR=#666600];[/COLOR]
add
Code:
Code:
  [COLOR=#000088]if[/COLOR][COLOR=#666600]([/COLOR] nStrCount [COLOR=#666600]>[/COLOR] pUser[COLOR=#666600]->[/COLOR]m_nRemainGP [COLOR=#666600]||[/COLOR] nStaCount [COLOR=#666600]>[/COLOR] pUser[COLOR=#666600]->[/COLOR]m_nRemainGP [COLOR=#666600]||[/COLOR] nDexCount [COLOR=#666600]>[/COLOR] pUser[COLOR=#666600]->[/COLOR]m_nRemainGP [COLOR=#666600]||[/COLOR] nIntCount [COLOR=#666600]>[/COLOR] pUser[COLOR=#666600]->[/COLOR]m_nRemainGP [COLOR=#666600])[/COLOR]
        [COLOR=#000088]return[/COLOR][COLOR=#666600];[/COLOR]
 
Back
Top