Blizz ABS Combos not costing MP on use

Started by CriticalHit, April 10, 2017, 01:44:27 pm

Previous topic - Next topic

CriticalHit

Hi,

I'm a bit confused on how the combo system works for Blizz ABS for RMXP. I set up a combo that moves one space, attacks, moves another space and attacks again called double dash. It works fine but the problem is that when I assign it to a skill that costs MP, the combo triggers when I use the skill but no MP is consumed. It is as if the skill is being ignored for the combo. I want the combo to only work if the user has enough MP just like a regular skill. How can I do this?
Thanks in advance.

KK20

Make the combo use the skill that starts the combo.

Configure the skill to have a penalty delay of 1 frame (the lowest you can possibly make it in the BABS Config). In RMXP, make the skill target the user and do absolutely nothing but have an SP cost.

Now your combo will only execute if you have the required SP.

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!

CriticalHit

I've been trying your suggestion but it still doesn't work right. The player just attacks himself. I think it would be easier to see what I have if you looked at my project,
Github link https://github.com/antlaw0/RMXP-Blizz-ABS

Let me know how I can fix it. I just want the player to dash forward and attack a few times at the cost of mp and the skill to not work if not enough SP.

Thanks.

KK20


      when 1 #Combo 1
        case com.aid
        when 1 #double attack
          return [[COMSkill, 9],
                  [COMAttack],
                  [COMMove, DIRForward, 2],
                  [COMCompletion],
                  [COMAttack]]

Change the target scope to 'None' (not 'User', my bad) and SP cost to 50 on Skill ID 9.

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!