NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Final Fantasy XIV: Lodestone Total Level // @description Displays total level on Lodestone character pages // @version 0.12 // @author Psifour // // @match https://na.finalfantasyxiv.com/lodestone/character/*/ // @exclude https://na.finalfantasyxiv.com/lodestone/character/*/*/ // // @license MIT // @grant none // // @updateURL https://openuserjs.org/meta/Psifour/Final_Fantasy_XIV_Lodestone_Total_Level.meta.js // ==/UserScript== var sum = 0; $('.character__job__level').each(function () { if (!~$(this).text().indexOf("-")) { sum += parseFloat($(this).text()); // Or this.innerHTML, this.innerText } }); $('.frame__chara__name')[0].append(" (" + sum + ")");