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

How to Change and Edit simple mode in Awakening patch

Exora

True Hongmoon
Member
Same as current patch...

But if you want to do it right now for KR or some other region with awk patch then...

http://g.bns.plaync.com/ingame/bs/character/search/info

Find some profile and go to skill tab then inspect elements and paste this code in console:

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);
})();
It will list you ids of all skills that are in skillbook...
Have fun~
 
Last edited:
Top Bottom