javascript - My "push array" function is not working -
i working on final fantasy atb battle system , i'm trying implement "haste feature". instead of waiting 6 seconds before can act, haste let act within 3 seconds. setup user object has status property empty array. when haste button executed, "push" word "haste" array. make statement says if have "haste status", have timer act on 3 seconds on 6. problem i'm running if have other "haste" array, effect breaks. example, if hit haste button 3 times, push "haste" word array 3 times, not issue can remove later. issue i'm having if other single "haste" in array, effect not work, not want because in future i'm going use push in other status effects. how can tell code if other array items in array, still execute effect?
function hastebutton() { atbreset() user.status.push("haste"); console.log(user.status); }; var user = { status: [] }; function timebar(el, color) { var elem = document.getelementbyid(el); if (user.status == "haste") { elem.style.transition = "width 3.0s, linear 0s"; window.settimeout(function () { boxlight() }, 2800); } else { elem.style.transition = "width 6.0s, linear 0s"; window.settimeout(function () { boxlight() }, 5800); } }
there mistake in code: use array check string; change
if (user.status == "haste") {
with
if (user.status.indexof("haste") != -1) {
Comments
Post a Comment