- Joined
- Feb 17, 2020
- Messages
- 30
- Reaction score
- 3
- First Language
- english, german
- Primarily Uses
- RMMZ
Hey people,
here I am again after stumbling upon a problem. I want to learn and get used on how to create plugins and started with something I would like to have in my game. So first question: Is this actually the right place? If not do you know where this should go?
Well to continue though. I checked all the functions in question and also have an idea at least on how to do it but... well I'm kinda stuck at the starting point though.
/*
...
* @command set
* @text Pair skills with weights
* @desc Sets weights for chosen skills.
*
* @arg SkillWeights
* @type struct<SkillWeights>[]
* @text skill weight pairs
* @desc Choose skill and its weight.
*/
/*~struct~type SkillWeights:
* @param Skill
* @type skill
*
* @param Weight
* @type number
* @min 0
* @max 1000
* @Default 0
*/
The problem with this is I can't choose a skill or number if I try to call the command.
I get the feeling that I'm doing something really simple wrong but I don't know.

here I am again after stumbling upon a problem. I want to learn and get used on how to create plugins and started with something I would like to have in my game. So first question: Is this actually the right place? If not do you know where this should go?
Well to continue though. I checked all the functions in question and also have an idea at least on how to do it but... well I'm kinda stuck at the starting point though.
/*
...
* @command set
* @text Pair skills with weights
* @desc Sets weights for chosen skills.
*
* @arg SkillWeights
* @type struct<SkillWeights>[]
* @text skill weight pairs
* @desc Choose skill and its weight.
*/
/*~struct~type SkillWeights:
* @param Skill
* @type skill
*
* @param Weight
* @type number
* @min 0
* @max 1000
* @Default 0
*/
The problem with this is I can't choose a skill or number if I try to call the command.
I get the feeling that I'm doing something really simple wrong but I don't know.
