Bobstah's Battle Commands Customization v2.2.1 - Updated 05/17/2017

● ARCHIVED · READ-ONLY
Started by Bobstah 357 posts Page 5 of 18 View original ↗
  1. lonewolph said:
    Would that create a sub-menu under Magic?
    It would present the player with a single skill menu containing both White and Black magic. The order of the skills is determined by the order you place the skill type IDs in the STypes tag. If White Magic is skill type 2 and Black Magic is skill type 3 in the following example:

    STypes(Magic):2,3

    Then White Magic skills would be displayed first and Black Magic skills would be displayed second under the command Magic. There are no additional submenus; The player selects 'Magic' and is presented with a unified skill list containing both White Magic skills and Black Magic skills.

    Does this answer your question?
  2. Would there be a relatively simple way to add the mana cost of a skill to the bottom right of the description box during battle? Or maybe add another smaller description box above the other one that holds mana cost and (in my case) cooldown/warmup speeds? I'm willing to code it myself if someone can give me a good starting point.
  3. VHStapes said:
    Would there be a relatively simple way to add the mana cost of a skill to the bottom right of the description box during battle? Or maybe add another smaller description box above the other one that holds mana cost and (in my case) cooldown/warmup speeds? I'm willing to code it myself if someone can give me a good starting point.
    I've been looking into a good way to accomplish this while incorporating skill cost plugins like Yanfly's Skill Core etc. Stay tuned, I have been making progress. :)
  4. Thanks for the plugin.

    I want to do a limit break (like FFVII) : hide a "Llimit" command, then pop that command when TP is full. I don't know if i'ts possible to do that with your plugin. I haven't managed yet :/
  5. Wow. This thread has gotten some attention. Following as a fan of Bobstah. I'm still using the earlier version (as it satisfies all my needs), but I am looking forward to the potential of Battle Command Icons!! :)
  6. Miacuro said:
    Wow. This thread has gotten some attention. Following as a fan of Bobstah. I'm still using the earlier version (as it satisfies all my needs), but I am looking forward to the potential of Battle Command Icons!! :)
    :3, Thanks!

    You really should upgrade though, depending on version. Bug fixes and all that.
  7. What enabling alternate attack commands? I have a skill called quick attack that I want to use as a normal attack with weapons sprites showing and everything on one of my characters.
  8. Hoppy said:
    What enabling alternate attack commands? I have a skill called quick attack that I want to use as a normal attack with weapons sprites showing and everything on one of my characters.
    The Kadokawa plugin folder that came with my RPG Maker MV download has a plugin called WeaponSkill. Using notetags, it allows you to change a weapon's attack skill to be something different.

    If that's not what your looking for, I think a combination of Yanfly's Action Sequence and my plugin should put you on the right track. This plugin isn't really meant to adjust animations, and I think going down that road would add bloat.

    Is there not another plugin available that accomplishes this yet?
  9. I haven't seen any other plug ins that enable an alternate normal attack yet.
  10. Hoppy said:
    I haven't seen any other plug ins that enable an alternate normal attack yet.
    Using a combo of my Battle Commands plugin, Yanfly's Battle Core and Action Sequence extension 2, you can accomplish what you want.

    For the Class or Actor you want an alternate attack skill for, use this Battle Command notetag:

    <Battle Commands>

    skill:ID

    skills

    guard

    items

    </Battle Commands>

    Then, on the skill you want to be an alternate attack, add the appropriate action sequence commands. I'm not very familiar with Yanfly's action sequence commands, but I'm going to give it my best shot for you:

    <target action>

    attack animation: target

    action animation

    </target action>

    I can't guarantee that the above section for Yanfly's Action Sequence Extension 2 will work, but I think that's the correct way to approach the situation.
  11. I'm using 

    <Battle Commands>

    skill:ID

    skills

    </Battle Commands>

    The help window for skill:ID appear directly above the command window but the help window for skills appear at the very top. How to adjust help window for skills to appear directly above the command window?
  12. DadaKen said:
    Thanks for the plugin.

    I want to do a limit break (like FFVII) : hide a "Llimit" command, then pop that command when TP is full. I don't know if i'ts possible to do that with your plugin. I haven't managed yet :/
    I'm assuming that the command is showing up, just disabled until the TP bar is full, and you want the command to be completely hidden until then. Is that correct?

    Lady said:
    I'm using 

    <Battle Commands>

    skill:ID

    skills

    </Battle Commands>

    The help window for skill:ID appear directly above the command window but the help window for skills appear at the very top. How to adjust help window for skills to appear directly above the command window?
    Do you mean when you're inside of a skill menu and trying to pick a skill, the help window is at the top? If so, that is expected. I only modify the position of the skill window during the command selection phase.
  13. Version 1.9 is available! Added icons, icon overriding, and command renaming! Download

    New things:

    It draws icons, which makes the command window really tiny. I might make it larger at some point.

    It should be a lot faster on slower devices.

     

    New Notetag things:

    Any command except ActorCmd can be prefixed with iX-, where X is the Icon Index to use. Example:

    i15-Skill:5

     

    Any command except Attack, Guard, Items, and ActorCmd can have (CommandName) after the command to rename it. Example:

    Skill(Jump):5

     

    You can combine the two:

    i15-Skill(Jump):5
  14. Version 1.9.1 is available! Added a parameter to hide icons. Download

    New parameter information is below and in the first post.

    Show Icons

    * 0: Do not show icons.

    * 1: Show icons. Note, this causes Window_ActorCommand.drawItem, Window_ActorCommand.itemTextAlign, and Window_ActorCommand.addCommand to be overwritten.
  15. I gave version 1.9 a quick try a moment ago and got an error - did you notice this and fix it in 1.9.1, or shall I give a more detailed bug report?
  16. Sera said:
    I gave version 1.9 a quick try a moment ago and got an error - did you notice this and fix it in 1.9.1, or shall I give a more detailed bug report?
    I didn't fix any bugs with 1.9.1, all I did was add a parameter that I forgot to add. Please provide more information. :)
  17. The error occurs almost immediately after entering combat. I haven't updated since 1.7, so it could technically be the 1.8 update that's causing this (using 1.7 doesn't give me an error).

    No other plugins are on.

    Spoiler
    TypeError: Cannot read property 'name' of null
        at Window_ActorCommand.addCustomSkillCommand (/C:/Users/---/Documents/Games/---/js/plugins/BOB_BattleCommandList.js:601)
        at Window_ActorCommand.processCommandEntry (/C:/Users/---/Documents/Games/---/js/plugins/BOB_BattleCommandList.js:473)
        at Window_ActorCommand.makeCommandList (/C:/Users/---/Documents/Games/---/js/plugins/BOB_BattleCommandList.js:444)
        at Window_ActorCommand.setup (rpg_windows.js:5413)
        at Scene_Battle.startActorCommandSelection (rpg_scenes.js:2266)
        at Scene_Battle.startActorCommandSelection (/C:/Users/---/Documents/Games/---/js/plugins/YEP_BattleEngineCore.js:3108)
        at Scene_Battle.changeInputWindow (rpg_scenes.js:2067)
        at Scene_Battle.updateBattleProcess (rpg_scenes.js:2051)
        at Scene_Battle.update (rpg_scenes.js:2042)
        at Scene_Battle.update (/C:/Users/---/Documents/Games/---/js/plugins/YEP_VictoryAftermath.js:696)
  18. Sera said:
    The error occurs almost immediately after entering combat. I haven't updated since 1.7, so it could technically be the 1.8 update that's causing this (using 1.7 doesn't give me an error).

    No other plugins are on.

    Spoiler
    TypeError: Cannot read property 'name' of null    at Window_ActorCommand.addCustomSkillCommand (/C:/Users/---/Documents/Games/---/js/plugins/BOB_BattleCommandList.js:601)

        at Window_ActorCommand.processCommandEntry (/C:/Users/---/Documents/Games/---/js/plugins/BOB_BattleCommandList.js:473)

        at Window_ActorCommand.makeCommandList (/C:/Users/---/Documents/Games/---/js/plugins/BOB_BattleCommandList.js:444)

        at Window_ActorCommand.setup (rpg_windows.js:5413)

        at Scene_Battle.startActorCommandSelection (rpg_scenes.js:2266)

        at Scene_Battle.startActorCommandSelection (/C:/Users/---/Documents/Games/---/js/plugins/YEP_BattleEngineCore.js:3108)

        at Scene_Battle.changeInputWindow (rpg_scenes.js:2067)

        at Scene_Battle.updateBattleProcess (rpg_scenes.js:2051)

        at Scene_Battle.update (rpg_scenes.js:2042)

        at Scene_Battle.update (/C:/Users/---/Documents/Games/---/js/plugins/YEP_VictoryAftermath.js:696)
    Check and make sure all of your skill IDs are valid. From what I can tell, the line on which this is occurring is looking up a skill based on ID. If everything looks good, shoot me a PM and we'll continue there to avoid clogging up the thread.
  19. Version 1.9.2 is available! Fixed a crash bug caused by using default commands (attack, skills, guard, items) without specifying options! Download

    Special thanks to Sera for helping me pinpoint this bug!
  20. Bobstah said:
    Version 1.9.2 is available! Fixed a crash bug caused by using default commands (attack, skills, guard, items) without specifying options! Download

    Special thanks to Sera for helping me pinpoint this bug!
    Hello, the most recent update did something weird; I haven't updated for a long time though. Anyway, ever since i applied this update the default "Skill" command set got disabled in battle. It's still there; but it's not selectable...