07-07-2013, 09:47 PM
it's super easy!
find (control+shift+F) and replace it with
The naming is counter-intuitive. trick_aibc_actor_skill_can_use? is actually the old, unmodified skill_can_use? that was replaced with the one in AIBC. We call this aliasing.
find (control+shift+F)
Code:
if $data_skills[skill_id].is_healing? && @actor.skill_can_use?(skill_id)
Code:
if $data_skills[skill_id].is_healing? && @actor.trick_aibc_actor_skill_can_use?(skill_id)
The naming is counter-intuitive. trick_aibc_actor_skill_can_use? is actually the old, unmodified skill_can_use? that was replaced with the one in AIBC. We call this aliasing.