Hi,
I got Mr. Mo's ABS work allmost fine. The only thing that I cant get to work is Range weapons system. I have all the same like in demo, but still it doesnt work. My range system from script:
I've tried like hundred times with bow (ID 17), but nothing happends. Any errors doesnt show up, hero just dont do nothing. But magic spells work fine:
I dont get what I'm doing wrong!? I dont have any other scripts, exept anti-lag. :-\
// And what are these States?
I got Mr. Mo's ABS work allmost fine. The only thing that I cant get to work is Range weapons system. I have all the same like in demo, but still it doesnt work. My range system from script:
Code:
#Ranged Weapons
RANGE_WEAPONS = {}
# RANGE_WEAPONS[Weapon_ID] =
#[Character Set Name, Move Speed, Animation, Ammo, Range, Mash Time(in seconds), Kick Back(in tiles),Animation Suffix]
# Leave kickback 0 if you don't want kick back effect.
RANGE_WEAPONS[17] = ["Arrow", 5, 4, 35, 10, 3, 1, "_melee"]
RANGE_WEAPONS[18] = ["Arrow", 5, 4, 35, 10, 4, 0]
RANGE_WEAPONS[33] = ["Ammo", 6, 4, 34, 10, 4, 0]
RANGE_WEAPONS[22] = ["Ammo", 15, 4, 0, 12, 0, 1]
Code:
#Ranged Skills
RANGE_SKILLS = {}
# RANGE_SKILLS[Skill_ID] = [Range, Move Speed, Character Set Name, Mash Time(in seconds), Kick Back(in tiles)]
RANGE_SKILLS[7] = [10, 5, "Magic Balls", 3, 1]
RANGE_SKILLS[35] = [10, 5, "Magic Balls", 3, 0]
// And what are these States?