This is based on 5017 Reunited CO source....
I wanna learn how to specify Skill Level in my if statements. Like for example
Im trying to code in the magic skills to take mana. And a elementary tornado isnt gonna take 130 mana.
I wanna learn how to specify Skill Level in my if statements. Like for example
PHP Code:
if (SkillId==1002)
{
MyChar.SkillLooping = SkillId;
MyChar.SkillLoopingX = (ushort)x;
MyChar.SkillLoopingY = (ushort)y;
MyChar.SkillLoopingTarget = Target;
MyChar.AtkType = 21;
MyChar.Attack();
MyChar.Attacking = true;
CurMP-=130;
}