Jump to content

Ulas

Active Member
  • Posts

    73
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Ulas

  1. directx8.lib have problem if you click item shop menu you can saw @ TMP4
  2. I don't understand your question but maybe you want character location quest mapshowcoordinat begin state start begin when 40004.use with pc.is_gm() begin chat ("--------------------------------------------------------------") chat("Map x : "..pc.get_x().. "") chat("Map y : " ..pc.get_y().. "") chat("Map index : " ..pc.getcurrentmapindex().. "") end end end
  3. translate.lua turkish version is not right a lot of have fault.
  4. sys_err("invalid idx %u", imgIdx); Change sys_log(0, "invalid idx %u", imgIdx); // @warme668
  5. MarkManager.cpp in search this command Reason is guild icon bool CGuildMarkManager::GetBlockCRCList(DWORD imgIdx, DWORD * crcList) { // Ŭ¶óÀ̾ğÆ®¿¡¼­ ¼­¹ö¿¡ ¾ø´Â À̹ÌÁö¸¦ ¿äûÇÒ ¼ö´Â ¾ø´Ù. if (m_mapIdx_Image.end() == m_mapIdx_Image.find(imgIdx)) { sys_err("invalid idx %u", imgIdx); return false; } CGuildMarkImage * p = __GetImage(imgIdx); if (p) p->GetBlockCRCList(crcList); return true; } // Change: bool CGuildMarkManager::GetBlockCRCList(DWORD imgIdx, DWORD* crcList) { // 클라이언트에서 서버에 없는 이미지를 요청할 수는 없다. if (m_mapIdx_Image.end() == m_mapIdx_Image.find(imgIdx)) { sys_log(0, "invalid idx %u", imgIdx); // @warme668 return false; } CGuildMarkImage* p = __GetImage(imgIdx); if (p) p->GetBlockCRCList(crcList); return true; }
  6. I can show u today HOW TO update DevIL library "STATIC" if you wanna SHARED library change BUILD_SHARED_LIBS:BOOL=OFF Change: BUILD_SHARED_LIBS:BOOL=ON and src/ILUT, ILU in CMakeList.txt inside have For STATIC library: add_library(ILUT ${ILUT_SRCS} ${ILUT_INC} ${ILUT_RSRC}) For SHARED library: add_library(ILUT SHARED ${ILUT_SRCS} ${ILUT_INC} ${ILUT_RSRC}) How to make video
  7. If I replace "127.0.01" with "localhost" it gets fixed but I don't think it's a complete fix can you try please
  8. If your sh close.sh doesnt work change 127.0.0.1 -> localhost
  9. #ifdef LONCA_INVALID_IDX_FIX bool CGuildMarkManager::GetBlockCRCList(DWORD imgIdx, DWORD* crcList) { // 클라이언트에서 서버에 없는 이미지를 요청할 수는 없다. if (m_mapIdx_Image.end() == m_mapIdx_Image.find(imgIdx)) { sys_log(0, "invalid idx %u", imgIdx); // @warme668 return false; } CGuildMarkImage* p = __GetImage(imgIdx); if (p) p->GetBlockCRCList(crcList); return true; } #else bool CGuildMarkManager::GetBlockCRCList(DWORD imgIdx, DWORD* crcList) { // Ŭ¶óÀ̾ğÆ®¿¡¼­ ¼­¹ö¿¡ ¾ø´Â À̹ÌÁö¸¦ ¿äûÇÒ ¼ö´Â ¾ø´Ù. if (m_mapIdx_Image.end() == m_mapIdx_Image.find(imgIdx)) { sys_err("invalid idx %u", imgIdx); return false; } CGuildMarkImage* p = __GetImage(imgIdx); if (p) p->GetBlockCRCList(crcList); return true; } #endif
  10. Friends, I am looking for an offline shop with a nice simple interface, can anyone help me? Please don't advice PREMIUM_OFFLINE_SHOP ! ! !
×
×
  • 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.