- Joined
- Mar 31, 2017
- Messages
- 4
- Reaction score
- 0
- First Language
- Portuguese
- Primarily Uses
- RMMV
D'ont know how to make those two to work together...
I created 4 custom params with Quasi Param Plus and I want to make them to increase in certain levels when the actor's leveling up... the thing is...
BOB_LevelUpBonuses it's build to work only with the vanilla params:
What should I do to add my custom params? D:
I created 4 custom params with Quasi Param Plus and I want to make them to increase in certain levels when the actor's leveling up... the thing is...
BOB_LevelUpBonuses it's build to work only with the vanilla params:
Code:
//
========================================================================
// Parameter Variables
//=======================================================================
Bobstah.Parameters = PluginManager.parameters('BOB_LevelUpBonuses');
Bobstah.Param = Bobstah.Param || {};
Bobstah.Param.LevelUpBonus_MaxLevel = Number(Bobstah.Parameters['Max Level']);
Bobstah.LevelUpBonuses.paramRef = ['mhp','mmp','atk','def','mat','mdf','agi','luk'];
Bobstah.LevelUpBonuses.xparamRef = ['hit','eva','cri','cev','mev','mrf','cnt','hrg','mrg','trg'];
Bobstah.LevelUpBonuses.sparamRef = ['tgr','grd','rec','pha','mcr','tcr','pdr','mdr','fdr','exr'];
//=======================================================================
What should I do to add my custom params? D:
Last edited:


