Jump to content

flygun

Former Staff
  • Posts

    729
  • Joined

  • Last visited

  • Days Won

    7
  • Feedback

    0%

Community Answers

  1. flygun's post in C++ EXP Table was marked as the answer   
    you can do it as following
     
    open main.cpp and add 
    #include "fstream" search for
     
    PanamaLoad();
     
    and add this after it
    // START_OF_EXP_TABLE_LOADING std::string temp_exp_line; std::ifstream exp_table_open("locale/%s/exptable.txt",g_stServiceName); if (!exp_table_open.is_open()) sys_err("Error:Unable to read exp table/Unable to find it") return 0; int exp_table_counter = 0; while (!exp_table_open.eof()) { exp_table_open >> temp_exp_line; str_to_number(exp_table_common[exp_table_counter], temp_exp_line.c_str()); exp_table_counter++; } // END_OF_EXP_TABLE_LOADING go to constants.cpp

     
    replace this
    const DWORD exp_table_common[PLAYER_EXP_TABLE_MAX + 1] = {    ... }; with this
     
    DWORD exp_table_common[PLAYER_EXP_TABLE_MAX + 1]; go to constants.h
    and search for this
    extern const DWORD exp_table_common[PLAYER_EXP_TABLE_MAX + 1]; and replace it with this
    extern DWORD exp_table_common[PLAYER_EXP_TABLE_MAX + 1];


     
    best regards
      Flygun
  2. flygun's post in Compile error was marked as the answer   
    post "void CheckClientVersion() "  body 
  3. flygun's post in How do I close rfpss ufps etc was marked as the answer   
    open userinterface.cpp
    and change
     
    this
    #ifdef _DISTRIBUTE stRegisterDebugFlag = "__DEBUG__ = 0"; #else stRegisterDebugFlag = "__DEBUG__ = 1"; #endif to this
    #ifdef _DISTRIBUTE stRegisterDebugFlag = "__DEBUG__ = 0"; #elif _DEBUG stRegisterDebugFlag = "__DEBUG__ = 1"; #else stRegisterDebugFlag = "__DEBUG__ = 0"; #endif or to this
    #ifdef _DEBUG         stRegisterDebugFlag = "__DEBUG__ = 1"; #else         stRegisterDebugFlag = "__DEBUG__ = 0"; #endif
  4. flygun's post in Client bin compiled pcombodata error was marked as the answer   
    try this
    CRaceData::TComboData * pComboData; if (!m_pkCurRaceData->GetComboDataPointer(m_wcurMotionMode, wComboType, &pComboData)) { TraceError("CActorInstance::__RunNextCombo(wComboType=%d, wComboIndex=%d) - m_pkCurRaceData->GetComboDataPointer(m_wcurMotionMode=%d, &pComboData) == NULL", wComboType, wComboIndex, m_wcurMotionMode); return; } if (dwComboArrayIndex >= pComboData->ComboIndexVector.size()) { TraceError("CActorInstance::__RunNextCombo(wComboType=%d, wComboIndex=%d) - (dwComboArrayIndex=%d) >= (pComboData->ComboIndexVector.size()=%d)", wComboType, wComboIndex, dwComboArrayIndex, pComboData->ComboIndexVector.size()); return; } WORD wcurComboMotionIndex = pComboData->ComboIndexVector[dwComboArrayIndex]; ComboAttack(wcurComboMotionIndex, m_fAtkDirRot, 0.1f);
  5. flygun's post in Error when compileing binary was marked as the answer   
    #solved
     
    added some lines to introloading.py
  6. flygun's post in Level Color... was marked as the answer   
    okay
     
    mmm i didn't found this "magenta rgb(207,71,71)"
    but try like this if you didn't like it till me i will research
     
    try this
    char szText[256]; if (level >= 1 && level < 10) { sprintf(szText, "|cFF959697Lv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 10 && level < 20) { sprintf(szText, "|cFFFFFFFFLv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 20 && level < 30) { sprintf(szText, "|cFF00FF7FLv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 30 && level < 40) { sprintf(szText, "|cFF00FF00Lv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 40 && level < 50) { sprintf(szText, "|cFF00CCFFLv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 50 && level < 60) { sprintf(szText, "|cFF0000FFLv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 60 && level < 70) { sprintf(szText, "|cFFDA70D6Lv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 70 && level < 80) { sprintf(szText, "|cFFC67171Lv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 80 && level < 90) { sprintf(szText, "|cFF00FFFFLv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 90 && level < 100) { sprintf(szText, "|cFFFFCC00Lv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 100 && level < 105) { sprintf(szText, "|cFFFF4500Lv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); } else if (level >= 105) { sprintf(szText, "|cFFCD661DLv %d|r", level); CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor); }
  7. flygun's post in Compiled Core But don't start ( Read for more ) was marked as the answer   
    Download: http://www.elitepvpe...a-core-libs.zip
    i think this is it
     
     
    best regards + good luck
       FlyGun 
     
    ps: i'll search for a better solution
  8. flygun's post in [C++]Required experience was marked as the answer   
    i think it's from char_skill.cpp
     
    search for this
    if (FN_should_check_exp(this)) { need_exp = 20000; if ( GetExp() < need_exp ) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("°واèؤ،°، ؛خء·اد؟© أ¥ہ» ہذہ» ¼ِ ¾ّ½ہ´د´ظ.")); return false; } }
  9. flygun's post in connect: Connection refused was marked as the answer   
    yup 9.2 with source
     
    nah
     
     
     
    thx guys solved
     
     
    just wrote "123" in  login FROM block_exception in account 
×
×
  • 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.