Jump to content

Ekinox

Member
  • Posts

    44
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Ekinox

  1. Hello

    If you want you can disable pvp protection for level 15 and lower

    Char.cpp

    if (level < PK_PROTECT_LEVEL)
    SetPKMode(PK_MODE_PROTECT);

    if (GetLevel() < PK_PROTECT_LEVEL)
    m_bPKMode = PK_MODE_PROTECT;

    You just need to comment on its lines

    //if (level < PK_PROTECT_LEVEL)
    //SetPKMode(PK_MODE_PROTECT);

    //if (GetLevel() < PK_PROTECT_LEVEL)
    //m_bPKMode = PK_MODE_PROTECT;

  2. Hello

    To use mysql 8.0 you simply need to include ' ' in mysql database server side queries on mysql 8.0 reserved words.
    You can find the list of reserved swords here:
    https://dev.mysql.com/doc/refman/8.0/fr/keywords.html

    For example for account
    your SQL queries containing the word account on the database side should look like 'account' just add the includes ' ' around these words

    Concerning the PASSWORD function, for example, simply replace it with MD5

    You don't have to change anything else

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