c++ efect hit combo

#TrC

Fondator
Membru personal
11 Oct 2017
7.585
6.817
113
Monede Dragon
94

Cod:
cauta in instancebaseeffect.cpp
void CInstanceBase::__ComboProcess()

modifica:

void CInstanceBase::__ComboProcess()
{
 
    DWORD dwcurComboIndex = m_GraphicThingInstance.GetComboIndex();

    if (0 != dwcurComboIndex)
    {
        if (m_dwLastComboIndex != m_GraphicThingInstance.GetComboIndex())
        {
            if (!m_GraphicThingInstance.IsHandMode() & IsAffect(AFFECT_HWAYEOM))
            {
                __AttachEffect(EFFECT_FLAME_ATTACK);
            }
        }
    }

    m_dwLastComboIndex = dwcurComboIndex;
 
}