Jump to content

Problem with source client


Recommended Posts

  • Premium

1. CEterPackManager: m_pFoxFS is a non-declared variable.

2. CEterPackManager: m_pFoxFS is a non-declared variable, you're also calling the Fox_FS class but it's non-existent according to the error.

3. PythonNonPlayer: You're returning an int to a function that needs a bool.

bool CPythonNonPlayer::IsMonsterStone(DWORD dwVnum)
{
    const CPythonNonPlayer::TMobTable * c_pTable = GetTable(dwVnum);
    if (!c_pTable)
    {
        //DWORD bType = 0;
        //return bType; --- this is line warning 291
        return false;
    }
 
    return c_pTable->bType == 2;
}

 

  • Love 1

 

"Nothing's free in this life.

Ignorant people have an obligation to make up for their ignorance by paying those who help them.

Either you got the brains or cash, if you lack both you're useless."

Syreldar

Link to comment
Share on other sites

Thanks for answer but... I do not really know where I should change. Can you please tell me where to change and what to add ... 

"

1. CEterPackManager: m_pFoxFS is a non-declared variable.

2. CEterPackManager: m_pFoxFS is a non-declared variable, you're also calling the Fox_FS class but it's non-existent according to the error.

"

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.