Passive Skill

● ARCHIVED · READ-ONLY
Started by Moogle_X 78 posts Page 4 of 4 View original ↗
  1. @Moogle_X Thank you very much!


     I tested it quickly and it works.


    yociexp117.gif
  2. I'm using the plugin Yanfly " YEP_AutoPassiveStates " and want to do the AutoRegen passive . I created a skill with notetag < EQS Type: 1> < PSV Weapon ID : 205 > the weapon 205 is AutoRegen and has the notetag < Passive State 76 > but don't add the state is 76 Regen , it seems that the plugins are not supported. Would be amazing if the plugin could read the code inside the weapon notetag to add alot of variety of passives. Thanks you very much for the job!
  3. @Pinrri


    If you want the skill to give Auto Regen state, just insert <Passive State: 76> notetag directly into skill's notebox instead of weapon's notebox.


    In other word, you don't need to use this plugin at all. :)
  4. Moogle_X said:
    @Pinrri


    If you want the skill to give Auto Regen state, just insert <Passive State: 76> notetag directly into skill's notebox instead of weapon's notebox.


    In other word, you don't need to use this plugin at all. :)



    Amazing, it works. I want to use this and "Moogle_X_EquipSkillsSystem" script to manage the passives like ffix system. If i found other issue i'll be happy to report it, Thanks again Moogle!
  5. It's possible that the actor doesn't receive AP if dies or is affected from some status? Like virus in FF9
  6. great! thanks for the plugins  :D
  7. Your plugin is very helpful but...
    Is it possible to remove a passive skill ?
     


    I use the YEP_EquipBattleSkill which allows to equip and remove character skills. The passive skill is working well, but if I remove it, its effect is still working. Is there a way to disable a passive skill by removing it ? And for some reason, I can't use equipment instead. Please help me to manage this problem.


    EDIT : sorry, I fixed my problem. YEP_EquipBattleSkill allowed to do this way whithout using a passive skill plugin. I was too much focused on the wrong plugin.


    PS: please excuse my mistakes, I am french.
  8. Excuse me.
    I've tried using your plugin but found no stat changes in my actors during testing.

    My game would involve characters who have access to psychic powers that build up TP through use.
    However these actors would receive negative states when their TP reaches full so the player would be encouraged
    to use these powers sparingly and tactically.

    So these actors' TP would decrease overtime but, with the use of Yanfly's Equip Battle Skills which I am using,
    equipping powers would accumulatively slow down that process. The more powers you equip, the slower your TP decreases and vice versa.
    Equip too many, particularly powerful, skills and you could even see your TP building up instead of emptying.

    I don't know if states can be stacked, considering Yanfly's Auto Passive Skill plugin relies on states as opposed to weapon ID's as Moogle_X's does, but this seemed to be the best option for what I'm going for.

    But as I said, I found no changes to the actors stats when I tested this plugin out.

    Is there anything I could be doing wrong?
    Thank you.
  9. I'm having the same issue I was having with Auto Passive Skills plugin from Yanfly.

    The autopassive skill works great, BUT I cannot seem to have the passive skill be restricted based on what class you currently are.

    For example: I used your plugin to give my Red Mage an Auto Refresh skill. I learn it, it works as intended. BUT when I change to another job, I was wanting the skill to be removed! My Thief should not be having auto refresh!

    What do I need to do in order to restrict this passive ability?
  10. Maldra said:
    I'm having the same issue I was having with Auto Passive Skills plugin from Yanfly.

    The autopassive skill works great, BUT I cannot seem to have the passive skill be restricted based on what class you currently are.

    For example: I used your plugin to give my Red Mage an Auto Refresh skill. I learn it, it works as intended. BUT when I change to another job, I was wanting the skill to be removed! My Thief should not be having auto refresh!

    What do I need to do in order to restrict this passive ability?

    I used this code to make the farmacology pasive for my game (change the 18 for the red mage class id.) but u need the yanfly auto passive states plugin.

    <Custom Passive Condition>

    var class = user.currentClass().id;

    if (class == 18) {

    condition = true;

    } else {

    condition = false;

    }

    </Custom Passive Condition>
  11. Pinrri said:
    I used this code to make the farmacology pasive for my game (change the 18 for the red mage class id.) but u need the yanfly auto passive states plugin.

    <Custom Passive Condition>

    var class = user.currentClass().id;

    if (class == 18) {

    condition = true;

    } else {

    condition = false;

    }

    </Custom Passive Condition>

    I'm not getting the condition to work..

    Here's everything in the Notepad section for Auto-Refresh:

    <Learn Cost: 1 JP>

    <Passive State: 20>

    <Custom Passive Condition>

    var class = user.currentClass().id;

    if (class == 6){

    condition = true;

    }else{

    condition = false;

    }

    </Custom Passive Condition>



    The Auto-refresh ability is still staying active even after changing classes..

    Any idea why it isn't working?
  12. The custom passive condition tags need to be on state 20. They're for setting whether the auto-refresh state becomes active. That tag doesn't do anything when it's on a skill.
  13. ramza said:
    The custom passive condition tags need to be on state 20. They're for setting whether the auto-refresh state becomes active. That tag doesn't do anything when it's on a skill.
    When I put the script in the State notepad I got a syntax error :/

    upload_2017-9-19_22-36-12.png


    upload_2017-9-19_22-36-24.png

    Is it not compatible with the YEP X ItemUpgradeSlots.js or something? (That's kinda what it looks like..)
  14. Maldra said:
    When I put the script in the State notepad I got a syntax error :/

    View attachment 72309


    View attachment 72310

    Is it not compatible with the YEP X ItemUpgradeSlots.js or something? (That's kinda what it looks like..)
    I tried turning it off and it just says another js error, then lastly it says the auto passive one.. Is there something wrong with the code?
  15. I don't think you're getting the class Id in the correct way.

    On a state, user._classId should give you the lass Id number, so use that instead.

    Code:
    <Custom Passive Condition>
    if (user._classId == 6){
    condition = true
    } else {
    condition = false
    }
    </Custom Passive Condition>
  16. ramza said:
    I don't think you're getting the class Id in the correct way.

    On a state, user._classId should give you the lass Id number, so use that instead.

    Code:
    <Custom Passive Condition>
    if (user._classId == 6){
    condition = true
    } else {
    condition = false
    }
    </Custom Passive Condition>
    That worked! Thank you so much! :) I wish I was better with JS.. I actually had a JS class at one point but we didn't write any original code and the teacher sucked so I didn't learn much..
  17. Ugh, the custom passive condition is no longer working after installing the new version of rpg maker mv and all of yanfly's new version. Has anyone else had any issues with this? It was working perfectly fine beforehand.
  18. Please disregard. Apparently the location of the plugin made it not work. I had the plugin towards the middle of the plugin list and it was not working, but when I moved it to the bottom of the list it is now working again :)