Items sort plugin for RPG Maker MV
A downloadable tool
Download NowName your own price
Simple plugin to help sorting your items, weapons, armors according to your settings.
Use Notepad++ or others to open this plugin
Change the words after '.sort(function(a,b){return' in this plugin like following to the pattern you want
'sort(function(a,b){return a.name>b.name?1:-1})'
'sort(function(a,b){return a.price-b.price})'
'sort(function(a,b){
a._gaintime = a._gaintime || 0;
b._gaintime = b._gaintime || 0;
return b._gaintime-a._gaintime;
}
);'
you can find more help and information in the plugin
Download
Download NowName your own price
Click download now to get access to the following files:
krz_sort_item.js 3.9 kB
Comments
Log in with itch.io to leave a comment.