Jump to content

M.Sorin

Member
  • Posts

    279
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Community Answers

  1. M.Sorin's post in Hel Crash /purg was marked as the answer   
    Search in cmd_gm.cpp
     
    if (!pkChr->IsNPC() && !pkChr->IsPet() && pkChr->GetRider() == NULL) and replace it with this:
     
    if (pkChr->IsNPC() && !pkChr->IsPet() && pkChr->GetRider() == NULL)  
  2. M.Sorin's post in Decrease Player's Level Quest was marked as the answer   
    You can use pc.set_level(number).
  3. M.Sorin's post in c++ long long int does not name was marked as the answer   
    In char.h search for:
    DWORD GetNextExp() const; THEN replace the original code with this
    long long        GetNextExp(); Done here..!
     
    Now open char.cpp and search for
    DWORD CHARACTER::GetNextExp() const DWORD CHARACTER::GetNextExp() const {     if (PLAYER_EXP_TABLE_MAX < GetLevel())         return 2500000000U;     else         return exp_table[GetLevel()]; } then replace the whole function with this
    long long CHARACTER::GetNextExp() {     if (PLAYER_EXP_TABLE_MAX < GetLevel())         return 420000000000LLU;     else         return exp_table[GetLevel()]; } It works fine for me on a 32-bit virtual machine.
     
  4. M.Sorin's post in Problem - How Can I Add Price On Items And Edit Types 40k was marked as the answer   
    Sry , my mistake .. i miss understod the "problem" . Use Microsoft Excel to edit .txt file
     
    71107 "천도복숭아" "ITEM_USE" "USE_SPECIAL" 1 "ANTI_DROP | ANTI_SELL | ANTI_GIVE | ANTI_STACK | ANTI_MYSHOP" "LOG" "NONE" "NONE" 2000 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 2000 8 0 0 0 0 0 0 0 Try this and be very careful when you copy/paste.
  5. M.Sorin's post in [HELP]Some Problems ! was marked as the answer   
    game.py and search for this string :
    def __BuildKeyDict(self)  
  6. M.Sorin's post in [C++]Disable glass was marked as the answer   
    input_main.cpp
  7. M.Sorin's post in Blazzing Purgatory - quest problem was marked as the answer   
    Nevermind ... fixed.
×
×
  • 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.