• Hi Guest! To get rid of ads on the page, please consider donating through user upgrades or other methods.

Addon Lightbringer Archer :: What number Skill Firecracker ?

Heldegas

Cricket
Member
Go to http://eu-bns.ncsoft.com/ingame/bs/character/training?c= and type your character name after ?c= (example of a light archer http://eu-bns.ncsoft.com/ingame/bs/character/training?c=Waveform).

Press F11 while on that page in Google Chrome to open the console (might be different for other browsers).

Paste this code into the console and press enter, it will display most skill IDs for the spec/class of that character :

Code:
(()=>{
    let container = document.getElementById("muhSkillsContainer");
    let noiceDisplay = (someLi) => {
        let skillContainer = document.createElement("div");
        let skillIcon = document.createElement("img");
        let nameAndId = document.createElement("span");
    
        skillIcon.src = someLi.querySelector(".skill_img_link img").src;
        nameAndId.innerText = someLi.querySelector(".skill_name").innerText.replace("\n", "") + " = " + someLi.dataset["id"];
    
        nameAndId.style.color = "black";
    
        skillContainer.appendChild(skillIcon);
        skillContainer.appendChild(nameAndId);
    
        skillContainer.style.margin = "10px";
    
        return skillContainer;
    }

    if(container)
        document.body.removeChild(container);

    container = document.createElement("div");
    container.id = "muhSkillsContainer";

    Array.from(document.querySelectorAll("ul.skill_list li"))
    .map( (skill) => container.appendChild(noiceDisplay(skill)) );

    document.body.appendChild(container);
})();

I don't see firecracker in there but it either means a mistranslation and they meant fireworks (211320), or it can mean it isn't a main skill and is probably a sub skill if that makes sense. But my bet would be on mistranslation.

I don't know archer enough and don't have one to help you out more unfortunately
 

Francoise

Cricket
Member
no firework
firecracker is skill (F)
firework is skill (Z)
firecracker is secret skill not show in skills page
 

Heldegas

Cricket
Member
hmm then check for context-3 (F key) in the XML and try to find an ID that resembles the others a bit but is not on the list

I found on F key :
212420 < ???
183005 < back tumble (roll F) as you found
211111 < follow up from sky strike which is 211110
211201, 211202, 211203 < follow ups fromm earthshaker? which is 211200
211343, 211344, 211345 < follow ups from low bow? which is 211340


that aren't on the skill list so far, will edit with more as i go but i'm busy

edit : those are all the IDs i found on the F key, i'd go and test with 212420 irst unless it's linked to the other skills mentioned
 
Last edited:

Heldegas

Cricket
Member
I see, thanks haha. Check my edit also, put more info there.
By follow ups by the way I mean skills triggered by other skills/conditions. Since firecracker is triggered by Solarize/Radiant Volley I don't think it's those though but I could be wrong.
 

Francoise

Cricket
Member
yep okay 211111 is firecracker

firecracker is radiant volley in dps meter
Post automatically merged:

Thank you Bro.
 
Last edited:
Top Bottom