[YEP] Yanfly Engine Plugins

● ARCHIVED · READ-ONLY
Started by Yanfly 6167 posts Page 153 of 309 View original ↗
  1. Hello. 


    I'm not sure if this should be a place to ask for Action Sequence help, (so I'm sorry)
    But is there/what is the IF statement I can use to check if battler is certain actor. So to say to have their basic attack animations slight vary per character. 

    Also @Yanfly


    I've been using Action Sequence Pack 2 1.7a for a while (and it's been working with VE's Animated Battlers) but I tried updating to 1.7c today and it broke. 
    I forgot to do a Screencap before I reverted -- but I was getting an _x_actorsprite error... obviously it sounds like something would conflict, but it seemed that 1.7a was working just fine with it. 
  2. Yay, base parameter control :D  Quick question, is it possible to set the base parameters based on individual variables per actor. I would like to use the actor variables (status menu plugin) to set up a sort of D&D-ish stat/skill system, and have it affect the base parameters, if that is at all possible. For example, the individual character's' Strength score adds to the base ATK. 
  3. DreamX said:
    @Akariu One error I can see right off the bat is that it's forgetSkill, not forgotSkill.



    omg....thank you!


    I'm such an idiot xD


    now it is working fine :D


    EDIT:


    I would like to know how I can increase the amount of JP after I get it the first time.


    So...if I purchase it the first time it will cost 500 JP and after that 550 JP and after that 605 JP.... an increas of 10% every time^^


    I ask of this because it has something to do with Lunatic Mode and I'm not able to code this ;_;
  4. Hey Yanfly. huge fan!


    I was using the BattleSysATB plugin when the game reported a TypeError. I have linked to you a screenshot of the debug. All I did was rename the core engine from dtb to atb. 


    Bug Link: http://prntscr.com/akn1p1 Thanks Yanfly!
  5. Hi Yanfly,

    I also wanted to mention there's a compatibility issue with Moghunter's Battle Camera even. I think the conflict is within the Battle Engine Core.


    It doesn't crash, however all of the pop up damage for enemies are off set to the left or to the right. (This is with Action Sequences Off and On) and this is also


    in conjunction with MogHunter's PopUp Damage Plugin.


    Thanks
  6. EtsuaCoil said:
    Hope its okay for me to ask a potentially dumb question, but I installed the item synthesis mod and I was able to get a couple recipes working, but now for some reason I'm getting a "TypeError: undefined is not a function" error. I can't seem to figure out whats wrong. I've tried changing the reagents for the recipe but I don't think that's the problem. Any advice?



    Follow the basic troubleshooting guidelines on the first post:


    BASIC TROUBLE SHOOTING


    1. Are all your plugins up to date? If they're not, download the updated versions from here: http://yanfly.moe/yep/changelog/


    2. Did you rename any of their plugins from their default filenames? If you did, then the plugins won't work. Do NOT rename them.


    3. Did you make sure all of the plugins are placed in order as http://yanfly.moe/yep/ inside of the Plugin Manager?


    4. When you updated the plugin, did you /open up/ the plugin within the Plugin Manager? 


    You are getting the error because you updated the plugin and did not go into the plugin itself like the instructions here in the first video:http://yanfly.moe/yep/changelog/


    Why is this important? Because whenever new parameters are added to a plugin upon a new update, you have to enter the plugin in order for the Plugin Manager to add those new parameters into your game. Otherwise, you will get undefined errors and "random" crashes. Skipping that step is not optional and is very crucial to getting updated plugins to work.


    5. If you are using non-Yanfly plugins, turn off ALL of the non-Yanfly plugins to see if there are any conflicts.


    6. If you are testing your project in Battle Test and aren't seeing any changes made after updating your plugin, make sure you -save- your project. RPG Maker MV does not carry over changes to Battle Test until you save your project.


    ---

    koster said:
    Hi Yanfly! Your plugins are amazing, thanks a lot.
    BTW I am new to this forum and to RMMV, so hi to all!
    I think found a bug in your action sequence pack plugins.
    When I use for instance <action copy: skill:9> to copy the action sequence from a skill, in this case Fire, to another (Spark for instance). Not only the action sequence gets copied, but the "Repeat" from the original skill too, so if Fire is defined with repeat 5, Spark will have repeat 5 too, even if I define Spark with another value of repeat.


    BTW would it be possible to add an action sequence like your "TINT SCREEN" but one that only affects the background, and not the battlers or animations. It would be great!


    thanks.



    The "Repeat" command is merely a means of way of automate the action sequence creation. This means, that the "Fire" skill that has Repeat 5 will mean the action sequence will be designed to repeat its damage action sequence 5 times. Therefore, if you copy that, then it will repeat it 5 times as well.


    ---

    HintonR said:
    Hello. 


    I'm not sure if this should be a place to ask for Action Sequence help, (so I'm sorry)
    But is there/what is the IF statement I can use to check if battler is certain actor. So to say to have their basic attack animations slight vary per character. 

    Also @Yanfly


    I've been using Action Sequence Pack 2 1.7a for a while (and it's been working with VE's Animated Battlers) but I tried updating to 1.7c today and it broke. 
    I forgot to do a Screencap before I reverted -- but I was getting an _x_actorsprite error... obviously it sounds like something would conflict, but it seemed that 1.7a was working just fine with it. 



    NOTE: I'll only provide support for my own plugins and code that I, myself, have provided. This isn't because I disrespect other plugin makers or anything of the sort. If I did, I wouldn't go so far as to maximize compatibility with my plugins when possible. The reason behind is because of my lack of time, and I'd like to put my undivided attention to errors caused by my own plugins. That said, any modifications you've made to the plugins itself, any custom Lunatic Mode code you've made yourself that isn't provided by me, or problems with the source code will not be supported by me either.


    ---

    Omegadragon8 said:
    Yay, base parameter control :D  Quick question, is it possible to set the base parameters based on individual variables per actor. I would like to use the actor variables (status menu plugin) to set up a sort of D&D-ish stat/skill system, and have it affect the base parameters, if that is at all possible. For example, the individual character's' Strength score adds to the base ATK. 



    The base parameters are calculated via the class and not the actor. If a DnD stat system is something you'd like to achieve, I'd personally recommend asking for a specialized plugin for it or modifying parts of your own source code itself:


    Line 3831 rpg_objects.js

    Game_Actor.prototype.paramBase = function(paramId) {
    return this.currentClass().params[paramId][this._level];
    };


    You can make all the changes you personally want there inside of the source code.


    ---

    WisdomStudios said:
    Hey Yanfly. huge fan!


    I was using the BattleSysATB plugin when the game reported a TypeError. I have linked to you a screenshot of the debug. All I did was rename the core engine from dtb to atb. 


    Bug Link: http://prntscr.com/akn1p1 Thanks Yanfly!



    BASIC TROUBLE SHOOTING


    1. Are all your plugins up to date? If they're not, download the updated versions from here: http://yanfly.moe/yep/changelog/


    2. Did you rename any of their plugins from their default filenames? If you did, then the plugins won't work. Do NOT rename them.


    3. Did you make sure all of the plugins are placed in order as http://yanfly.moe/yep/ inside of the Plugin Manager?


    4. When you updated the plugin, did you /open up/ the plugin within the Plugin Manager? 


    You are getting the error because you updated the plugin and did not go into the plugin itself like the instructions here in the first video:http://yanfly.moe/yep/changelog/


    Why is this important? Because whenever new parameters are added to a plugin upon a new update, you have to enter the plugin in order for the Plugin Manager to add those new parameters into your game. Otherwise, you will get undefined errors and "random" crashes. Skipping that step is not optional and is very crucial to getting updated plugins to work.


    5. If you are using non-Yanfly plugins, turn off ALL of the non-Yanfly plugins to see if there are any conflicts.


    6. If you are testing your project in Battle Test and aren't seeing any changes made after updating your plugin, make sure you -save- your project. RPG Maker MV does not carry over changes to Battle Test until you save your project.


    ---

    HintonR said:
    Hi Yanfly,

    I also wanted to mention there's a compatibility issue with Moghunter's Battle Camera even. I think the conflict is within the Battle Engine Core.


    It doesn't crash, however all of the pop up damage for enemies are off set to the left or to the right. (This is with Action Sequences Off and On) and this is also


    in conjunction with MogHunter's PopUp Damage Plugin.


    Thanks



    NOTE: I'll only provide support for my own plugins and code that I, myself, have provided. This isn't because I disrespect other plugin makers or anything of the sort. If I did, I wouldn't go so far as to maximize compatibility with my plugins when possible. The reason behind is because of my lack of time, and I'd like to put my undivided attention to errors caused by my own plugins. That said, any modifications you've made to the plugins itself, any custom Lunatic Mode code you've made yourself that isn't provided by me, or problems with the source code will not be supported by me either.
  7. Hello, I tried doing all your steps. The files were not renamed, I have v1.24 of the ATB battle system and I do not have any non-Yanfly plugins. I have the Battle Core above the ATB system and my utilities plugins are below these battle plugins. I am not sure what to do now
  8. WisdomStudios said:
    Hello, I tried doing all your steps. The files were not renamed, I have v1.24 of the ATB battle system and I do not have any non-Yanfly plugins. I have the Battle Core above the ATB system and my utilities plugins are below these battle plugins. I am not sure what to do now


    Did you make sure ALL of your plugins are up to date?
  9. Map Select Skill


    Features and How to Use










    This plugin produces a window similar to that of the Select Item Window, but instead, it displays a list of skills from a designated actor and the skill type selected. When a skill is selected, it set the choosen variable's value to become that of the picked skill's ID.


    You can grab the plugin here:
    Yanfly.moe: http://yanfly.moe/2016/03/27/yep-87-map-select-skill/
  10. Yanfly said:
    Map Select Skill


    Features and How to Use










    This plugin produces a window similar to that of the Select Item Window, but instead, it displays a list of skills from a designated actor and the skill type selected. When a skill is selected, it set the choosen variable's value to become that of the picked skill's ID.


    You can grab the plugin here:
    Yanfly.moe: http://yanfly.moe/2016/03/27/yep-87-map-select-skill/

    I LOVE YOU, YANFLY!
  11. @Yanfly One question pertaining to this newest plugin: Is it possible to select say, one skill from every character currently in the battle party? For example, I have 8 main characters, but only 4 can fight in battle at one time. Or would it be possible to add in a skill selection screen (sort of like the party selection screen from your Party System plugin) where you can select the skills you'd like to display in the window outside of the in-game menu?
  12. So what you're saying is (granted I don't do something incredibly stupid) I should be able to modify that snippet of the source code without breaking compatibility with yours :o  Oh, and map skills! :D  
  13. Jeysonmcfly said:
    @Yanfly One question pertaining to this newest plugin: Is it possible to select say, one skill from every character currently in the battle party? For example, I have 8 main characters, but only 4 can fight in battle at one time. Or would it be possible to add in a skill selection screen (sort of like the party selection screen from your Party System plugin) where you can select the skills you'd like to display in the window outside of the in-game menu?



    No, its function only gets the skills from one character.

    Omegadragon8 said:
    So what you're saying is (granted I don't do something incredibly stupid) I should be able to modify that snippet of the source code without breaking compatibility with yours :o  Oh, and map skills! :D  



    More or less, yes! :)
  14. Yanfly said:
    No, its function only gets the skills from one character.

    I see. Well, I could in effect circumvent this by making a dummy actor, which I would keep separate from the party, then supply with all necessary skills upon each additional addition to the party. Loop holes. <3
  15. In the plugin Learn Skill System, i have the error (attach)..


    I off all other my plugins (except the YEPs), and no change the error. The other YEPs (Itens, equip e skills) function normally. The problem is only in the Learn Skill. But i have it on and no have problem, this problem begin when i add news other plugins, but not resolve even i disabling they.

    Learn Skill.png
  16. Feli said:
    In the plugin Learn Skill System, i have the error (attach)..


    I off all other my plugins (except the YEPs), and no change the error. The other YEPs (Itens, equip e skills) function normally. The problem is only in the Learn Skill. But i have it on and no have problem, this problem begin when i add news other plugins, but not resolve even i disabling they.


    View attachment 34694





    try updating all your plug ins to the lastest version, make sure they are in the reccomended order (found here), and then check your class note tags and skill note tags of the skills that are learned through the plug in you might have a simple spelling error
  17. Uohh!! I never thought in order question, but is this the problem! Resolved, thanky you Crinsom Dragon!!  :popcorn:
  18. Okay, so I am using your BaseParamControl plugin alongside Bobstah's CustomStats plugin.   I'm using custom formulas derived from my custom defined stats, such as Str, Dex, Vit and such.   The actors are calculating correctly based on these parameters, however, I am unable to get the enemy values to calculate using the same parameters.  Would I be better of using Lunatic Mode coding on the notetags for my enemies, or is there a way for the plugin to use the same evaluations from the enemies as well?


    I have attached one of my formulas.  I use your enemy levels script to determine enemy levels, but they have stats that are static and are not affected by their level.  I'm not sure if there is something I am doing wrong, but any help is much appreciated.

    formula.JPG
  19. Hi Yanfly.

    I wanted to know if Enemy Levels also scales during Battle Tests? 


    Thank you
  20. Hi I used 


    Extended Message Pack 1



    But the plugin commend   "HideChoice 2"  didn't work


    I tried script call "$gameSystem.hideChoice(2)"  it didn't work, too