[RMMV] Selected Item
A downloadable RPG Maker MV Plugin
To use:
Simple & Efficient way:
Use this script call:
CTB.SelectItem(varId, *itemType*, *standardMV*)
varId: Variable Id to store the item number picked
itemType: 1 (Normal), 2 (Key), 3 (Hidden A), or 4 (Hidden B)
standardMV: Set to true to use the standardMV item select window
Both itemType & standardMV are optional
Examples:
CTB.SelectItem(1, 4)
CTB.SelectItem(5)
CTB.SelectItem(7, 2)
...or..
Use the following script call:
CTB.SelectItemMV.enabled = true;
Then call the Select Item command from the event list
Upon completion CTB.SelectItemMV.enabled will auto revert to false
Optionally you may also use the script call CTB.SelectItemMV.keepEnabled to not auto revert
With that then you would manually set CTB.SelectItemMV.enabled back to false to use the default Item Select window
Setup parameters as desired
Place notetags in the item notes
Notetags are as follows:
<selectedItemImage:'image filename'>
<selectedItemHue:*hue ranges from 0 to 360*>
<selectedItemScale:*image scale*>
<selectedItemCE:*common event ID*>
Example notetags:
<selectedItemImage:'image filename'>
<selectedItemHue:128>
<selectedItemScale:2>
<selectedItemCE:1>
All notetags are evaluated javascript
Place image files in the chosen directory set in the parameters
Default directory is "img/pictures/"
Download
Click download now to get access to the following files:
Comments
Log in with itch.io to leave a comment.
It only work when you have at least one item and only work on itemtype hidden b
Soooo cool! Is there an option to port it to MZ?