The RPG Maker Resource Kit

RMRK RPG Maker Creation => Resources => Topic started by: MajikalBlood on November 08, 2011, 11:56:54 PM

Title: Icon IDs?
Post by: MajikalBlood on November 08, 2011, 11:56:54 PM
I've search for something about it for about 2 hours and found nothing...There was a script or command or something that would pull up all of my iconset.png image and would show me the icons and show me the ID for it because I don't know how to know the ID for item icons...
Title: Re: Icon IDs?
Post by: modern algebra on November 09, 2011, 12:37:01 AM
Well, it's just a counting exercise to determine the ID of an icon in the set. The numbering starts at 0 and goes from left to right, then down to the next row. There are 16 icons in each row, so it's really not that hard. Basically, it is the following:

0123456789101112131415
16171819202122232425262728293031
32333435363738394041424344454647
48495051525354555657585960616263
64656667686970717273747576777879

And so on. All you need to do is count down to see what row it is in, multiply that by 16, and then add by whichever column it's in. I personally find that counting is faster than test playing just to check an icon. However, to each his or her own.

The script you're thinking of is Woratana's IconViewer, which is included in his Christmas Giftbox (http://rmrk.net/index.php/topic,31518.0.html).

I think Yanfly made one too, which could be found in Pockethouse Scripts (http://rmrk.net/index.php/topic,42396.0.html).
Title: Re: Icon IDs?
Post by: CodeMaster on November 09, 2011, 01:49:15 AM
I think there is a script in woras script box that does this.