Chaosflyff files Stathack help

10/28/2016 23:26 laitila#1
Hi!

So i'm using the chaos flyff files 2015, and when a character reaches like 1500 STR as an example. The character can't log into the game how can i dissable this? i can't find it in the source :S

Versioncommon
Greetings and have a nice weeknd epvp!
10/29/2016 23:21 - DK#2
You search this Lines:
User.cpp:
PHP Code:
if( IsValidObjthis ) )
    {
        if( !
IsAuthHigherAUTH_GAMEMASTER ) )
        {
            if( ( ( 
m_nSta-15 ) + ( m_nInt -15 ) + ( m_nDex -15 ) + ( m_nStr 15 ) ) > 400 )
            {
                
//g_dpDBClient.SendBan( m_playAccount.lpszAccount, 9999 );
                
WriteLog"Ground Stat Hack, UserID = %07d, UserName = %s [STA:%d, INT:%d, DEX:%d, STR:%d] stats  stat points, login returned"m_idPlayerGetName(), m_nStam_nIntm_nDexm_nStr );
                
g_UserMng.RemoveUserm_dwSerial );
            }
        }
    }

    
//Stats-Check recoded!
    
if( IsValidObjthis ) )
    {
        if( !
IsAuthHigherAUTH_GAMEMASTER ) )
        {
            if( 
this->GetSta() > 1800 || this->GetInt() > 1800 || this->GetDex() > 1800 || this->GetStr() > 1800 )
            {    
                
//g_dpDBClient.SendBan( m_playAccount.lpszAccount, 9999 );
                
WriteLog "Over Stats, UserID = %07d, UserName = %s [STA:%d, INT:%d, DEX:%d, STR:%d] stats  stat points, login returned"m_idPlayerGetName(), m_nSta GetParamDST_STA), m_nInt GetParamDST_INT), m_nDex GetParamDST_DEX), m_nStr GetParamDST_STR));
                
g_UserMng.RemoveUserm_dwSerial );
            }
        }
    } 
Change the number of this stats:
PHP Code:
GetSta() > 
GetInt() >
GetDex() >
GetStr() > 
to your own maximum stats :)
10/30/2016 00:00 Mike Oxmaul#3
Quote:
Originally Posted by .ACE. View Post
You search this Lines:
User.cpp:
PHP Code:
if( IsValidObjthis ) )
    {
        if( !
IsAuthHigherAUTH_GAMEMASTER ) )
        {
            if( ( ( 
m_nSta-15 ) + ( m_nInt -15 ) + ( m_nDex -15 ) + ( m_nStr 15 ) ) > 400 )
            {
                
//g_dpDBClient.SendBan( m_playAccount.lpszAccount, 9999 );
                
WriteLog"Ground Stat Hack, UserID = %07d, UserName = %s [STA:%d, INT:%d, DEX:%d, STR:%d] stats  stat points, login returned"m_idPlayerGetName(), m_nStam_nIntm_nDexm_nStr );
                
g_UserMng.RemoveUserm_dwSerial );
            }
        }
    }

    
//Stats-Check recoded!
    
if( IsValidObjthis ) )
    {
        if( !
IsAuthHigherAUTH_GAMEMASTER ) )
        {
            if( 
this->GetSta() > 1800 || this->GetInt() > 1800 || this->GetDex() > 1800 || this->GetStr() > 1800 )
            {    
                
//g_dpDBClient.SendBan( m_playAccount.lpszAccount, 9999 );
                
WriteLog "Over Stats, UserID = %07d, UserName = %s [STA:%d, INT:%d, DEX:%d, STR:%d] stats  stat points, login returned"m_idPlayerGetName(), m_nSta GetParamDST_STA), m_nInt GetParamDST_INT), m_nDex GetParamDST_DEX), m_nStr GetParamDST_STR));
                
g_UserMng.RemoveUserm_dwSerial );
            }
        }
    } 
Change the number of this stats:
PHP Code:
GetSta() > 
GetInt() >
GetDex() >
GetStr() > 
to your own maximum stats :)
IsValidObj( this ) dein ernst?
10/30/2016 00:18 - DK#4
Quote:
Originally Posted by Jupsi332 View Post
IsValidObj( this ) dein ernst?
Frag Yaysh, Xylenu oder wie er heißt ^^, er hat das geschrieben... Ich habe es lediglich aus Virtuos Source gezogen und gepostet.