Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.6 KB

README.md

File metadata and controls

54 lines (37 loc) · 1.6 KB

NotArmory stat checker

This is a script meant to display possibles ranges of values for each attributes of predefined items. It will then compute a score in percentage for each of the said attributes to give the item a rating from 0 to 100% (which will have a nice rainbow effect) However as of now i cannot make the difference between base attributes and the potential bonus that could have been added, so some errors can show up, such as 300% rating

rendre preview

Forum link here

Requirements

You need a browser that can run user scripts. Usually you just need to download a plugin such as the few below:

Installation

Create a new user script: example with Tampermonkey

new user script

Then paste this in it, and you're done ! (dont forget to save)

// ==UserScript==
// @name NotArmory Item Checker
// @namespace
// @version 1.0
// @description NotArmory helper
// @author SainteCroquette
// @match https://tsw.vn.cz/char/*
// @match https://tsw.vn.cz/acc/char.php?name=*
// @icon https://www.google.com/s2/favicons?domain=vn.cz
// @grant none
// ==/UserScript==

'use strict';

$.ajax({
  url: 'https://raw.githubusercontent.com/SainteCroquette/medianXLitemChecker/main/mxl_notarmory_stat_checker.js',
  success: (data) => {
    eval(data);
  }
})

Just reload tsw.vn.cz & you're good to go !