Clean Source

Page 1 of 28 12345678911 ... LastLast
Results 1 to 15 of 414
  1. #1
    0xC0FFEE spikensbror is offline
    MemberRank
    Dec 2006 Join Date
    SwedenLocation
    1,855Posts

    Clean Source

    Clean Source

    Download:
    Code:
    http://www.mediafire.com/?7dz984y595wfcgt
    Changes made in this source:
    Code:
    Increased buff limit.
    Removed 2nd-password.
    Fixed character saving. (C1 Procedure fixed)
    Fixed compiling. (Should compile right away)
    Admin and GM name colours. (Admin: Red, GM: Blue)
    Patches:

    Pet crash when they get too far away from owner:
    Code:
    Download AIPet.rar and replace the AIPet.cpp in __AIInterface with the one supplied in the archive.
    Guides:

    Changing Neuz salt:
    Spoiler:
    Open Neuz.cpp and find this function:
    Code:
    CNeuzApp::HashMD5
    The function should look like this:
    Code:
    void CNeuzApp::HashMD5( char* szResult, LPCTSTR szPWD )
    {
        char szBuffer[256];
        char* szKey = "";
    
    #ifdef __INTERNALSERVER
        switch( LANG_KOR )
    #else // __INTERNALSERVER
        switch( ::GetLanguage() )
    #endif // __INTERNALSERVER
        {
        case LANG_JAP:    
            szKey = "chanho_park";
            break;
        case LANG_TWN:    
            szKey = "omg";
            break;
        case LANG_HK:
            szKey    = "tpgk";
            break;
        case LANG_ENG:
            {
                if( ::GetSubLanguage() == LANG_SUB_IND )
                {
                    szKey = "dldhsdlseh";
                }
                else
                {
                    szKey = "patom";
                }
            }
            break;
        case LANG_KOR:    
            szKey = "@FLYFF";
            break;
        case LANG_GER:
            szKey    = "gjgusdbfjq";
            break;
        case LANG_SPA:
            szKey    = "rlawnsgud";
            break;
        case LANG_POR:
            //szKey    = "rlawnsgud";
            szKey    = "kikugalanet";    //chipi_090520 05/22ºÎÅÍ ¾ÏȣȭŰ º¯°æ
            break;
        case LANG_FRE:
            szKey    = "gjgusdbfjq";
            break;
        case LANG_VTN:
            szKey    = "dlrjsdn";
            break;
        case LANG_RUS:
            szKey    = "rlaansrms";
            break;
        }
    
        sprintf( szBuffer, "%s%s", szKey, szPWD );
        md5( szResult, szBuffer );
    }
    Under the LANG_ENG case in the switch statement, change the szKey after the else statement to your desired salt.
    If that doesn't work, change all szKey sets to your desired salt.


    Debugging your executables to troubleshoot crashes:
    Spoiler:
    Make sure you copy the exe as well as the pdb file from the compile output and put them in the client/server folder (depends on if it's the server or client you're debugging), then just follow the guide and the debugger should show what line of code is causing the issue.
    How to: Debug an Executable Not Part of a Visual Studio Solution


    Reason to re-post:
    Someone screwed up my previous post, leaving ownership to WrongWay, therefore, I'm making a new one and I request the old one gets deleted.
    Last edited by spikensbror; 19-11-10 at 11:52 PM.


  2. #2
    Account Upgraded | Title Enabled! FtwHoly is offline
    MemberRank
    Feb 2010 Join Date
    364Posts

    Re: Clean Source

    However, thanks :P

  3. #3
    i sell platypus Improved is offline
    MemberRank
    Jun 2009 Join Date
    DenmarkLocation
    2,819Posts

    Re: Clean Source

    All posts deleted?

  4. #4
    Account Upgraded | Title Enabled! FtwHoly is offline
    MemberRank
    Feb 2010 Join Date
    364Posts

    Re: Clean Source

    Quote Originally Posted by Improved View Post
    All posts deleted?
    Nop, he made another thread.

  5. #5
    Fyyre Fyyre is offline
    MemberRank
    Oct 2007 Join Date
    EuropeLocation
    271Posts

    Re: Clean Source

    Thank for documenting your changes.

    Would also be helpful if someone can post a clean database, without edits of any kind.

    -Fyyre

  6. #6
    Found a place to live. Blackbox is offline
    MemberRank
    Sep 2008 Join Date
    2,412Posts

    Re: Clean Source

    Quote Originally Posted by spikensbror View Post
    Reason to re-post:
    Someone screwed up my previous post, leaving ownership to WrongWay, therefore, I'm making a new one and I request the old one gets deleted.
    The other post is only messed up until the time on the server is fixed. Which Dan has said will be on the 11th/12th

    http://forum.ragezone.com/f71/time-e...4/#post6001189

    Update;

    I've closed allot of posts (mainly the one with less than 100 replies) if one of your threads was closed you may RE-OPEN it , but remember it wont appear correctly in the display order until the 11th/12th.
    I'll delete the old one for now, but if you'd like it back once the times are fixed just say so :P
    Last edited by Blackbox; 09-11-10 at 03:30 AM.

  7. #7
    0xC0FFEE spikensbror is offline
    MemberRank
    Dec 2006 Join Date
    SwedenLocation
    1,855Posts

    Re: Clean Source

    Thing is, the thread wasn't closed, only the first post of the thread was gone.

  8. #8
    Dragona wishly is offline
    MemberRank
    Aug 2008 Join Date
    PhilippinesLocation
    296Posts

    Re: Clean Source

    is there a new update?

  9. #9
    0xC0FFEE spikensbror is offline
    MemberRank
    Dec 2006 Join Date
    SwedenLocation
    1,855Posts

    Re: Clean Source

    No, there isn't.

  10. #10
    Found a place to live. Blackbox is offline
    MemberRank
    Sep 2008 Join Date
    2,412Posts

    Re: Clean Source

    Quote Originally Posted by spikensbror View Post
    Thing is, the thread wasn't closed, only the first post of the thread was gone.
    It's there. Just not in the first spot due to the server/forum time getting messed up. But everythings still there as it should be. Most of the OP's got moved to the last page

  11. #11
    Dragona wishly is offline
    MemberRank
    Aug 2008 Join Date
    PhilippinesLocation
    296Posts

    Re: Clean Source

    what EnvironmentEffect.txt for?
    i have an error
    2010/11/ 9 21:38:48 CEnvironment::LoadScript - Script Load Failed

  12. #12
    0xC0FFEE spikensbror is offline
    MemberRank
    Dec 2006 Join Date
    SwedenLocation
    1,855Posts

    Re: Clean Source

    It's for the new weather/season system in flyff.
    Make a txt file named EnvironmentEffect.txt and inside it, just put:
    Code:
    1

  13. #13
    Dragona wishly is offline
    MemberRank
    Aug 2008 Join Date
    PhilippinesLocation
    296Posts

    Re: Clean Source

    what is the crash code of this?
    because i what to remove it...
    Last edited by wishly; 09-11-10 at 05:31 PM.

  14. #14
    Member iTunes is offline
    MemberRank
    Jun 2010 Join Date
    67Posts

    Re: Clean Source

    cool post

  15. #15
    Eternal Games Owner ZuminaSpanky is offline
    MemberRank
    Nov 2009 Join Date
    346Posts

    Re: Clean Source

    I love you.

    Someone had to say it.

    Thank you very much for releasing a clean source. xD



Page 1 of 28 12345678911 ... LastLast

Advertisement