Jump to content

Curinga

Inactive Member
  • Posts

    24
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Curinga

  1. 4 minutes ago, Crystal™ said:

    I don't really thing that is a problem.When you upgraded your granny in your source did you compile successfully?

    no. i have no probleme compiling the source with granny 2.9. 

    but Wahmon say for compile the client source with

    "/usr/src/novaline/Srcs/Extern/lib and copy all to lib_stuff for client binnary"

     

    I get the error before make that.

     

  2. 1 hour ago, Mr.Slime said:

    Try this fix

      Reveal hidden contents
    
    
    bool CActorInstance::__IsLeftHandWeapon(DWORD type)
    {
    if (CItemData::WEAPON_DAGGER == type || (CItemData::WEAPON_FAN == type && __IsMountingHorse()))
    return true;
    else if (CItemData::WEAPON_BOW == type)
    return true;
    
    
    #ifdef ENABLE_COSTUME_WEAPON
    else if (CItemData::COSTUME_WEAPON_DAGGER == type || (CItemData::COSTUME_WEAPON_FAN == type && __IsMountingHorse()))
    return true;
    else if (CItemData::COSTUME_WEAPON_BOW == type)
    return true;
    #endif
    else
    return false;
    }
    
    
    bool CActorInstance::__IsRightHandWeapon(DWORD type)
    {
    if (CItemData::WEAPON_DAGGER == type || (CItemData::WEAPON_FAN == type && __IsMountingHorse()))
    return true;
    else if (CItemData::WEAPON_BOW == type)
    return false;
    #ifdef ENABLE_COSTUME_WEAPON
    else if (CItemData::COSTUME_WEAPON_DAGGER == type || (CItemData::COSTUME_WEAPON_FAN == type && __IsMountingHorse()))
    return true;
    else if (CItemData::COSTUME_WEAPON_BOW == type )
    return false;
    #endif
    else 
    return true;
    }
    
    
    bool CActorInstance::__IsWeaponTrace(DWORD weaponType)
    {
    switch(weaponType)
    {
    case CItemData::WEAPON_BELL:
    case CItemData::WEAPON_FAN:
    case CItemData::WEAPON_BOW:
    #ifdef ENABLE_COSTUME_WEAPON
    case CItemData::COSTUME_WEAPON_BELL:
    case CItemData::COSTUME_WEAPON_FAN:
    case CItemData::COSTUME_WEAPON_BOW:
    #endif
    return false;
    default:
    return true;
    
    
    }
    }

     

    Thank you but i alredy have that fix before i ask. but no fix.

    2 hours ago, icewolf said:

    its easy to fix but we don't know it :)

    maby.. i think if is easy someone alredy have the fix..

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