- Joined
- Aug 18, 2012
- Messages
- 1,933
- Reaction score
- 1,326
- First Language
- English
- Primarily Uses
- RMMV
Hey gang, I'm using Yanfly's Item Synthesis plugin and it's worling fine. What caught my interest was this line in the help section:
I thought this would be a neat idea to make multiple items from one item synthesis so I added it to the item but it doesn't seem to have any effect. This is the code I'm using:
Vitamin X is the item I want add more of when synthesizing and $dataitems[76] is it's ID. Aim I doing something wrong or aim I misreading the description.
Code:
<Custom Synthesis Effect>
var bottle = $dataItems[123];
$gameParty.gainItem(bottle, 2);
</Custom Synthesis Effect>
For this notetag, the 'item' variable will refer to the item being
synthesized. Changing it will do nothing but it will be used as a
convenience variable to refer to it.
I thought this would be a neat idea to make multiple items from one item synthesis so I added it to the item but it doesn't seem to have any effect. This is the code I'm using:
Code:
<Custom Synthesis Effect>
var Vitamin X = $dataItems[76];
$gameParty.gainItem(Vitamin X, 3);
</Custom Synthesis Effect>
Vitamin X is the item I want add more of when synthesizing and $dataitems[76] is it's ID. Aim I doing something wrong or aim I misreading the description.