Created
October 13, 2017 02:31
-
-
Save nemasu/9972c5d6701490db74d71a30cab7a8cc to your computer and use it in GitHub Desktop.
FFIXV Lodestone Retainer Inventory Equipment CSV Display
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Open retainers inventory on lodestone, paste and run in browsers console (tested with Chromium). | |
$(".item-list__name").each(function(index){console.log($(".item-list__name")[index].innerText + "," + $($(".item-list__name")[index]).find(".db-tooltip__item_equipment__level")[0].innerText.replace("Lv. ","") + "," + $($(".item-list__name")[index]).find(".db-tooltip__item__level")[0].innerText.replace("Item Level ","") + "," + $($(".item-list__name")[index]).find(".db-tooltip__item_equipment__class")[0].innerText);}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment