Jump to content

Fazer

Inactive Member
  • Posts

    98
  • Joined

  • Last visited

  • Days Won

    6
  • Feedback

    0%

Everything posted by Fazer

  1. chown -R mysql /var/db/mysql && chgrp -R mysql /var/db/mysql Run this
  2. Fazer

    Flame Map

    M2 Download Center Download Here ( Internal ) Hello i create a new map for exp with flame theme. Please make a comment with your rate. Mega VirusTotal
  3. Delete all files on "Client\mark\" and try again.
  4. Hello i have a problem. when another player hit something the game show me the damage.
  5. long CItem::GetPetVnum() { char szQuery[1024]; snprintf(szQuery, sizeof(szQuery), "SELECT Petvnum FROM pet_summon WHERE PetSummonItemVnum='%d'", GetVnum()); std::auto_ptr<SQLMsg> msg(CDBManager::instance().DirectQuery(szQuery)); MYSQL_ROW row = mysql_fetch_row(pMsg->Get()->pSQLResult); long alrow = atoi(row[0]); sys_log(0, "TEST_VNUM : %d\n", alrow); return alrow; } try this
  6. locale.cfg looks like 10012 1252 en. the english charset is 1252 so change it.
  7. from: if (GOLD_MAX <= nTotalMoney) { sys_err("[OVERFLOW_GOLD] Overflow (GOLD_MAX) id %u name %s", GetPlayerID(), GetName()); ChatPacket(CHAT_TYPE_INFO, LC_TEXT("20억 냥을 초과하여 상점을 열수가 없습니다")); return; } to //if (GOLD_MAX <= nTotalMoney) // { // sys_err("[OVERFLOW_GOLD] Overflow (GOLD_MAX) id %u name %s", GetPlayerID(), GetName()); // ChatPacket(CHAT_TYPE_INFO, LC_TEXT("20억 냥을 초과하여 상점을 열수가 없습니다")); // return; // }
  8. the problem is in char.cpp if (GOLD_MAX <= nTotalMoney)
×
×
  • 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.