- Joined
- Jan 22, 2016
- Messages
- 613
- Reaction score
- 223
- First Language
- English
- Primarily Uses
Can't wait for the Target Control plugin tomorrow! I have a skill made that would fit it perfectly!
So first of all, thank you so much for all your hard work. I use quite a lot of your plugins and I have everything I need for the game I wanted to make!
I've installed the Item Durability plugin and it's working great so far! But I have a weapon type that can hex/heal/buff/debuff enemies and allies. I made a simple one that simply heals your allies, it uses the official "WeaponSkill" plugin to tie it to a Heal skill which has a scope of 1 ally. Whenever I use it though, it never gets affected by durability. Do weapons that use skills (or that target allies?) not get affected by the plugin? I saw no setting for this on the plugin so I'm not sure if it's outside the scope of your plugin. Any ideas?
Thanks!

I did see the terms of use however I would like to know if it would be ok if I showed your plugins on my YouTube page. I have a very small account and I love your content. I can turn of monetized videos if that is what you would prefer. Thanks for the awesome content.
This is a stupid question, I know, but what's the difference between Attachable Augments and Item Upgrade Slots?
I only ask because Driftwood Gaming did a video about Item Upgrade Slots:
And he was able to do enchanting with elemental stuff which Augments has as it's main thing.
So so is the difference just "Augments are temporary, Upgrades are permanent"? Is this video outdated now?
YEP_X_AttachAugements version 1.04
<Augment: Mark>
Change Suffix: of Confusion
Change Text Color: 10
Add Attack State: 27, 20%
</Augment: Mark>
I created an item and it works great as an augment, that is until I save and exit, then load the save.
I was able to re-create it and found out the Suffix for whatever reason gives the following:
"TyperError - Cannot read proprty 'length of null'" (only on trying to remove or replace the augment from a peice of gear with the Suffix on it)
Only error I've seen and happens just with Suffixes not Prefixes.
Quickdraws already touched on another:
For instance a HRG: +5% comes out as 105% and does not function as health regen at all even though it is at 105%.
No noticeable regen effect happens.
Thank you very much for all your hard work Yanfly! =)
View attachment 36773
Hmm. In your Sample Project I am unable to gain experience. I dunno if it's a bug or anything but I can't pinpoint the problem.
EDIT: Seems to be the Beta plugin Selection Control.
I've seen a few threads regarding this scattered throughout the internet, but I've never seen it resolved one way or another. Is there any possible update or work-around that will allow BattleCore to co-exist with Victor's Throwable Objects, or perhaps a similar plug-in you've already done that can achieve the same effect? I'm sure that I'm not the only one curious about this.
Hi. This is an issue with the Battle Engine Core.
My character has a skill that attacks "2 random enemies" as its scope. However, he may launch the second attack on the same enemy even if it's dead...
I understand you implemented Immortality state to let skills finish their effects before letting an enemy die. I also realize that the Immortality parameter is not in the Battle Engine Core anymore.
Thus I tried to manually put "Immortality: target, false" to remove immortality. Even though monster dies from first hit, my character may still launch his second attack on the same non-existing enemy which is even worse.
So is there any way to fix this? How do you make the character not randomly attack an enemy who's HP is 0? I want to keep the "2 random enemies" scope.
Thanks!
Yeah I get that and can live without the decimal just have to change the tags ive already done that's all. Thanks for the quick response; however, it seems that HIT CRI MEV EVA CEV all now add 100% with any tag plus the value; so a +1% CEV tag adds 101% which negates any viable use of those parameters.
Target Core >> Selection Control
Features and How to Use
When selecting targets, RPG Maker MV has it set by default that the list of valid targets is always either alive enemies, alive allies, or only dead allies. Actions would not be able to target either actors or enemies or change from single target to multiple targets. This extension plugin for the Target Core will allow you to break free of that restriction for better selection control of targets as well as insert customized conditions.
Plugin and Instructions: http://yanfly.moe/2016/04/22/yep-94-selection-control/
Target Core >> Selection Control
Features and How to Use
When selecting targets, RPG Maker MV has it set by default that the list of valid targets is always either alive enemies, alive allies, or only dead allies. Actions would not be able to target either actors or enemies or change from single target to multiple targets. This extension plugin for the Target Core will allow you to break free of that restriction for better selection control of targets as well as insert customized conditions.
Plugin and Instructions: http://yanfly.moe/2016/04/22/yep-94-selection-control/
For anyone getting the problem I noted. I believe I found the issue I believe. Hopefully yanfly will read this and add it if its right or whatever.
It's a simple coding fix so you'll need to have a editor such as notepad++ to fix for now. I also found from testing that luk +% tags weren't be processed
on the character and found a simply fix for that as well. Click spoiler below for code.
Line 1221 // Plugin: Attach Augments
ItemManager.applyAugmentParamRate = function(mainItem, param, value) {
var add = $gameTemp._augmentSetting === 'attach';
value = parseFloat(value * 0.01);
var rate = value + 1;
if (['MAXHP', 'MHP', 'MAX HP', 'HP'].contains(param)) {
var code = Game_BattlerBase.TRAIT_PARAM;
var id = 0;
} else if (['MAXMP', 'MMP', 'MAX MP', 'MP'].contains(param)) {
var code = Game_BattlerBase.TRAIT_PARAM;
var id = 1;
} else if (['ATK', 'STR'].contains(param)) {
var code = Game_BattlerBase.TRAIT_PARAM;
var id = 2;
} else if (['DEF'].contains(param)) {
var code = Game_BattlerBase.TRAIT_PARAM;
var id = 3;
} else if (['MAT', 'INT', 'SPI'].contains(param)) {
var code = Game_BattlerBase.TRAIT_PARAM;
var id = 4;
} else if (['MDF', 'RES'].contains(param)) {
var code = Game_BattlerBase.TRAIT_PARAM;
var id = 5;
} else if (['AGI', 'SPD'].contains(param)) {
var code = Game_BattlerBase.TRAIT_PARAM;
var id = 6;
} else if (['LUK'].contains(param)) {
var code = Game_BattlerBase.TRAIT_PARAM;
var id = 7;
return; <--------------- Delete this line; This "return" is preventing LUK +/-% tags from being recognized so it needs to be removed for effect to occur.
} else if (Yanfly.Param.AugmentXParams.contains(param)) {
var rate = value; // <------------------------------- Add this line; makes xparams add flat value as dictated by your tags.
var code = Game_BattlerBase.TRAIT_XPARAM;
var id = Yanfly.Param.AugmentXParams.indexOf(param);
} else if (Yanfly.Param.AugmentSParams.contains(param)) {
var code = Game_BattlerBase.TRAIT_SPARAM;
var id = Yanfly.Param.AugmentSParams.indexOf(param);
} else {
return;
}
this.adjustItemTrait(mainItem, code, id, rate, add);
};
Hope this helps anyone whose been having that issue.
#Problem with plugin
I have problem Unleashed Weapons plugin didnt for full.
I have him under CoreEngine, ItemCore and EquipCore no botom of that 3 but he still do that.
Change skill but not want change name and i don't know why.
Hey Yanfly, thanks a lot for taking the time to make these plugins, they're a godsend!
I do have a couple questions about the Buffs and States Core Plugin. What I'm specifically trying to do is create buffs and debuffs that stack at custom rates, with different stack caps. I do know your plugin has a codestring I can edit that alters the effect when a buff has more than one stack, but I have multiple types of buffs and I don't want all of them to stack at the same rate. That said, I didn't see anything in Lunatic Mode about altering the the max stacks of a buff (maybe I missed it?) or how to alter the stacking rate. For example:
Elemental Damage Debuffs: I want skills that deal elemental damage to stack a debuff that increases the amount of damage that target suffers from that same element, so let's say I give the state a base "Fire Damage" rate of 110%. I want this skill to go up by 10% for a total of 120% at 2 stacks, etc. capping out at 5 stacks for 150%.
I also have a passive healing buff that adds HRGN +10%, but I want this buff to only add 5% per stack and cap at 3 stacks for 20%. Would I need to make a conditional plugin to achieve this?