I tried to look through your plugins but I sorta got lost.
I wanted to ask you if it would be possible to buy more than one weapon at the shop. For some reason it can't go up to more than one (Have the money to buy more than one of course.)
Also, is there a way to show all stat changes in shop instead of just attack? I'm pretty sure I didn't change anything in your plugins.
AndI have no other plugins to mess with those parameters.
My sincerest apologies if this was asked before - but could you add the ability to make the speed of "breathing" or floating dependant on the enemies current HP, so it slows down once they get closer to dying? It'd be a neat way to see how much an enemy can take without explicitly showing lifebars to the player!
Just in case it helps to clarify, this is the note in my Skill to have the character step forward, swing the wand, animate the spell over the enemy, and then have the character step back. It works just fine for actors, but not so hot for enemies.
And I've also given them the trait Equip Weapon - Wand, which is the same weapons that the actors have. And yet bar none, when the actors swing it, they show the wand animation, and when the enemy swings it, nothing. I had previously reported "a few pixels of something inexplicable flashing over its head for a frame", but this was about five pixels missing in the character's hair graphic for a frame; this is repaired, and no weapon still. I tried turning off all other plugins, but it didn't change anything. Help! And many, many thanks in advance.
Alright, I see the issue now. I'll get it fixed tonight.
"Showing its age". Shop Menu Core was requested by many users specifically for the Ace interface alone. I intend to keep the same format as to keep uniformity amongst my plugins. Should you find it inadequate for your usage, I suggest you visit this forum: http://forums.rpgmakerweb.com/index.php?/forum/136-js-plugin-requests/
And not make insults towards my work here when a good majority of users find it fine otherwise. Thank you.
I get 'Type Error' - 'undefined is not a function'.
:-(
Also is there a way we can download all of your plugins at once? (the most updated version)
I prepurchased the engine and I feel like I'm using an older version of all of these... (I may be wrong?)
I'm a manager at work, father of a one year old, and it's very difficult for me to keep up with the updates in real time. Any mercy for someone like me, Yanfly?
* <Learn Custom Text> * text * text * </Learn Custom Text> * This will be the custom text shown underneath all the main costs. You can * use text codes for this.
After reading some other replies, it looks like I can use the damage rate option in your Damage Core to accomplish the 50% damage portion, so I guess all I need now is a way to also change the attack element. If anyone knows the proper syntax for doing so, it would be greatly appreciated
Something like:
action effectdamage rate: 50%(change attack element to x)action effectSorry for posting about it again, but it's very easy for posts to get buried in such a busy thread, and it looks like I didn't make it into the latest big batch of replies. Thanks again @Yanfly for all the effort you're putting in not only on the plugins but also in supporting them and helping out the community.
Thanks for adding the option to adjust the columns in Battle Status.
There's still a bug though. Even when the columns aren't adjusted, the damage popups display above the battle status as if they were adjusted. For example, if you have two party members without the columns being adjusted... They're shown to the left side of the battle status, but the damage popup for the second actor appears on the far right side of the status, which is exactly where the popup would display if "Adjust Columns" were set to true.
A second thing that may or may not be a bug (probably done by design, but needs a change imo) is the turn skipping. Skipping all the way right will results in a missed turn, which is fine. But I see this happening accidentally where the player may not have intended to skip the turn, and just wanted to get to the last actor. Is it possible to include an option to display another command box on the right side asking to end the turn?
Wondering this too, as there's no JP Cost Display Eval function. I had to rely on the Custom Text display. But making any changes to the cost in the future would be a ton of work.
I tried to look through your plugins but I sorta got lost.
I wanted to ask you if it would be possible to buy more than one weapon at the shop. For some reason it can't go up to more than one (Have the money to buy more than one of course.)
Also, is there a way to show all stat changes in shop instead of just attack? I'm pretty sure I didn't change anything in your plugins.
AndI have no other plugins to mess with those parameters.
For Item Core you need to tag your consumable items like Potions with <Not Independent Item> tag, otherwise they end up with randomized stats and won't stack properly.
For Item Core you need to tag your consumable items like Potions with <Not Independent Item> tag, otherwise they end up with randomized stats and won't stack properly.
* <Learn Custom Text> * text * text * </Learn Custom Text> * This will be the custom text shown underneath all the main costs. You can * use text codes for this.
Thanks for the reply, I needed to set the current battles tho, but I found it. It was a challenge getting my battle swap plugin to work with your ctb when I originally design it around another system. But I got it to work. Thanks
@Yanfly: Thanks a lot for the reply. I'll sit quietly until those features are released. (I guess I can make states that add attack elements and add/remove those mid-skill in the meantime!)
It reminded me of another really quick question actually. Is there any way with the current (or future) lunatic skill notetag options to embed another entire skill within a skill? Say you do all the action sequence notetag work, and in the middle you had a line that calls another skill to process, going through all of its action sequences and effects before continuing on in the original skill. Kind of like how a common event embeds within an action sequence when called.
Is that a crazy feature that has no place in this world?
The entire purpose of the <Learn Custom Text> is for you to write out your own text be it costs and requirements. This -is- the eval function for displaying custom costs.
@Yanfly: Thanks a lot for the reply. I'll sit quietly until those features are released. (I guess I can make states that add attack elements and add/remove those mid-skill in the meantime!)
It reminded me of another really quick question actually. Is there any way with the current (or future) lunatic skill notetag options to embed another entire skill within a skill? Say you do all the action sequence notetag work, and in the middle you had a line that calls another skill to process, going through all of its action sequences and effects before continuing on in the original skill. Kind of like how a common event embeds within an action sequence when called.
Is that a crazy feature that has no place in this world?
Embedding a skill within another skill is going to cause problems and unnecessary amounts of bloat within the database when loaded up. It's best to go about these things manually than to use a template.
Hey Yanfly, is there a way to make it so that each player that has been added to the active party (or into the party reserve) increases the ammount of items that can be carried?
The entire purpose of the <Learn Custom Text> is for you to write out your own text be it costs and requirements. This -is- the eval function for displaying custom costs.
Maybe I'm trying too hard, but there is no eval line that uses the skill's learnCustomText property in your entire script.
This is the only function that uses this property after you loaded all notetags.
Window_SkillLearnData.prototype.drawCustomText = function(wy) { if (this._skill.learnCustomText === '') return wy; this.drawTextEx(this._skill.learnCustomText, 4, wy); return wy;};Every js code written in the <Learn Custom Text> tag will be displayed as raw text with this function.
Hey Yanfly, is there a way to make it so that each player that has been added to the active party (or into the party reserve) increases the ammount of items that can be carried?
Maybe I'm trying too hard, but there is no eval line that uses the skill's learnCustomText property in your entire script.
This is the only function that uses this property after you loaded all notetags.
Window_SkillLearnData.prototype.drawCustomText = function(wy) { if (this._skill.learnCustomText === '') return wy; this.drawTextEx(this._skill.learnCustomText, 4, wy); return wy;};Every js code written in the <Learn Custom Text> tag will be displayed as raw text with this function.
Everything in the the <Learn Custom Text> is straight up text and text code, not code. What you NEED to do, like I said before in the previous post, is to define your $gameVariables in the <Learn Require Eval> code.
Guys,I found a way to make Yanfly Skill Learn Plugin to upgrade actors skill.
If I wanna learn a magic skill such as holy light,including level 3,I can use this code with the help of <Learn Show EvalI set holy light 1 as skill 1,holy light 2 as skill 2 and holy light as skill 3)
holy light 1:
<Learn Show Eval>
if (user.isLearnedSkill(1)||user.isLearnedSkill(2)||user.isLearnedSkill(3)){
value = false;
} else {
value = true;
}
</Learn Show Eval>
holy light 2:
<Learn Show Eval>
if (user.isLearnedSkill(1)){
value = true;
} else {
value = false;
}
</Learn Show Eval>
<Learn Cost Eval>
user.forgetSkill(1);
</Learn Cost Eval>
holy light 3:
<Learn Show Eval>
if (user.isLearnedSkill(2)||user.isLearnedSkill(3)){
value = true;
} else {
value = false;
}
</Learn Show Eval>
<Learn Cost Eval>
user.forgetSkill(2);
</Learn Cost Eval>
Now everyone in your game can learn this skill and upgrade it without worrying whether other can learn this skill!
So does this make it so once you learn skill 1, skill 2 is available to be learned and if you learn skill 2 you will forget skill 1 and it won't be available to be learned again. Also skill 3 will become available after you learned skill 2?
AH Crap I forgot you was doing a Shop Plugin Core don't hesit to PM for make me remember to trying to adapt my AI to your shop ;D (like doing I will Demo and the setup for make the window match with the layout I need c:
even if in this moment I am so much focus on learning C# and playing with Unity haha I just love Unity so much.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.