SaveBank

Active Member
Reaction score
28
Author
SaveBank
Contributors
N/A
Quickbar Entry
javascript: $.getScript('https://cdn.jsdelivr.net/gh/SaveBankDev/twIncRenamer@main/incRenamer.js');
Public?
Public
A currently simple script that gives you the option to mass rename your attacks.

increnamer.png


You can either prepend or append something to the current names of the attacks or just replace the whole text.

More Features will be implemented in the future. I already have some ideas but I am always open for suggestions.
 
Last edited:
Upvote 0

SaveBank

Active Member
Reaction score
28
Small new feature:
You can now instantly rename your attacks with a given template that can be set in new user variables.
To enable the "quickstart" just set the QUICKSTART variable to true. Just as in the script itself you can add a prefix or a suffix to the current attack name or just replace the whole name. These variables are PREFIX, SUFFIX and REPLACE.

Code:
javascript: var QUICKSTART = true;  var PREFIX = "TestPrefix";  $.getScript('https://cdn.jsdelivr.net/gh/SaveBankDev/twIncRenamer@main/incRenamer.js');

Code:
javascript: var QUICKSTART = true; var SUFFIX = "TestSuffix";  $.getScript('https://cdn.jsdelivr.net/gh/SaveBankDev/twIncRenamer@main/incRenamer.js');

Code:
javascript: var QUICKSTART = true; var REPLACE = "TestReplace";  $.getScript('https://cdn.jsdelivr.net/gh/SaveBankDev/twIncRenamer@main/incRenamer.js');

This does not change the current functionality.

You may have to clear your cache for this new update to work.
 
Top