Вопрос I wanna know if the ability is target or aeo area

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
11 Фев 2023
Сообщения
159
Реакции
4
i wanna know how can i get the ability type like for example i wanna make the skywrath mage to cast the spells

like first spell is target type but the utl is aeo type

i can cast the ability if it is target type but i wanna know which ability is target and which one is aeo
 
Последнее редактирование:
i wanna know how can i get the ability type like for example i wanna make the skywrath mage to cast the spells

like first spell is target type but the utl is aeo type

i can cast the ability if it is target type but i wanna know which ability is target and which one is aeo
see DOTAAbilityDefinition_t::m_iAbilityBehavior (it's a flags-enum)
the ability definition is the first member of C_DOTABaseAbility, it's undocumented in schema though
C++:
Expand Collapse Copy
-----members of class C_DOTABaseAbility-----
    uint8_t[8] unaccounted(offset 0x5e8) //<----- ability definition ptr
    bool m_bAuxCastState(offset 0x5f0, size 0x1, align 0x1)
    uint8_t[3] unaccounted(offset 0x5f1)
 
Назад
Сверху Снизу