Help with Yanfly Limited Skill Uses

● ARCHIVED · READ-ONLY
Started by Blue001 1 posts View original ↗
  1. Hello.
    I am using
    http://yanfly.moe/2016/01/09/yep-56-limited-skill-uses/

    I am trying to make a ff1 like system where all the same tier spells a character has will use the same "charges".
    So for example, Fire and Ice, will both have 2 uses, and then if you use Fire once, Ice will also lose one use.

    I fell like it is possible with this plugins Lunatic Mode, But first I am trying to make the max uses go up when a character reaches a certain level.

    he lists the notetag I think will do it as....


    Skill and Item Notetags:
    <Custom Skill x Use Max>
    value += user.level;
    </Custom Skill x Use Max>

    or

    <Custom Skill name Use Max>
    value += user.level;
    </Custom Skill name Use Max>

    The ‘value’ variable is the maximum uses the user will gain for all Limited Use skills of skill x. If you are using the named version of the notetag and you have multiple skills in your database with the same name, priority will be given to the skill with the highest ID.

    But I am unsure how to change that to make the skill gain a max charge when a player hits certain levels...