Comments

Log in with itch.io to leave a comment.

Viewing most recent comments 1 to 40 of 43 · Next page · Last page
(2 edits)

Only running this plugin + Battle Engine Core/Core Engine and I get this error whenever I try to equip a weapon

TypeError: undefined is not a function

    at Window_EquipItem.isMHAllowedWithOffHandWtypeId (file:///E:/RPGMVProjects/Project2/js/plugins/Ramza_DualWield.js:1568:37)

    at Window_EquipItem.includes (file:///E:/RPGMVProjects/Project2/js/plugins/Ramza_DualWield.js:1608:33)

    at Window_EquipItem.<anonymous> (file:///E:/RPGMVProjects/Project2/js/rpg_windows.js:1972:21)

    at Array.filter (native)

    at Window_EquipItem.Window_ItemList.makeItemList (file:///E:/RPGMVProjects/Project2/js/rpg_windows.js:1971:40)

    at Window_EquipItem.Window_ItemList.refresh (file:///E:/RPGMVProjects/Project2/js/rpg_windows.js:2013:10)

    at Window_EquipItem.setSlotId (file:///E:/RPGMVProjects/Project2/js/rpg_windows.js:2474:14)

    at Window_EquipSlot.update (file:///E:/RPGMVProjects/Project2/js/rpg_windows.js:2391:26)

    at file:///E:/RPGMVProjects/Project2/js/rpg_core.js:7029:19

    at Array.forEach (native)

Greetings.

I'm sorry you're having this issue. But I am unable to reproduce the problem on my end, so it might be being caused by a bug with some configuration you're using.

  • Please ensure that you are starting a fresh savegame when you're testing this, as the equipment in an old saves database files may not contain all of the metadata that the plugin is expecting.
  • Did you use the <Forbidden Wtypes: x y z> note tag on any weapons that are currently equipped, or might show up in the equipment list?
    • If yes, can you temporarily remove that tag and test to see if the crash still happens?
  • How is dual wielding set on an actor? Is it on their class traits? Their actor traits? A piece of equipment? A weapon?
  • Does the crash happen when trying to equip a weapon in the main hand or offhand slot? Both?
  • Does the actor start with two weapons already equipped? Does the crash still happen if they have only one, or no weapons at all equipped?
  •  If you make your actors no longer dual wielding type (remove the trait), does the crash still happen?

Once I get a little more info, we'll try to get this sorted out for you.

~Ramza

Wow fast response, I fixed it just now by adding the Ramza_X_DW_MenuExtension plugin that I saw in the demo project. Maybe this is also mandatory? It wasn't mentioned in the required plugins.

That shouldn't be required, and isn't turned on in my test project where I was trying to duplicate your crash.

I'm glad it's working for you now, though. Let me know if you have any other issues.

(9 edits)

Thank you!

I have run into another issue. Two attacks are occurring despite the off hand having no weapon equipped, having a main weapon and a shield equipped or when wielding a two handed weapon. This second attack with a main+shield equipped has no animation.

The Barehanded Attack parameter doesn't change any of this for me.

  • Fresh game save
  • Did not use <Forbidden Wtypes: x y z> note tag
  • Dual wielding set on an actor by actor traits
  • Actor does not start with any weapons
  • Disabled all plugins aside from: Community_Basic, YEP_CoreEngine, YEP_BattleEngineCore, YEP_X__ActSeqPack1&2, Ramza_DualWield, YEP_SkillCore, Ramza_X_DW_MenuExtension
  • YEP_BattleEngineCore is set to "STB"

Hi, I think I've found a situtational minor bug.

By using these 3 plugins (yanfly core, yanfly battle core, dual wield), if a character equips a weapon that has tag <Twohanded>,

then uses an item that uses gainHP formula such as  b.gainHp(Math.randomInt(50) + 51); b.startDamagePopup();, the heal effect becomes twice. 

Using <Mainhand> does not cause this bug.

Hi, is there a way to make a state add bonus to specified hand? I can make condition to check if left hand or right hand is a specified weapon type equipped, however it can only add regular state which increases the to hit/damage/critical bonus to the character which affects both hands.

(+1)

There is currently no way to do that exactly.

The modifier plugin parameters for dual wielding, offhand, and two handing a weapon can all be eval'd. By default, they're just a float number (0.75 for example), but you can use code in this box to make the number different based on a condition being met using a ternary operator: 

(user.isStateAffected(21) ? 0.90 : 0.75

Something like the above would make the offhand do 90% normal damage if the user is affected by state 21, or 75% or not. These can be nested as well, allowing for different levels of offhand mastery, or ambidexterity, or whatever

(user.isStateAffected(21) ? 0.90 : (user.isStateAffected(26)) ? 0.80 : 0.75

I'm not entirely sure that's the exact code you'd use to do that, I didn't get a chance to test it, but I had set it up once a long time ago, in an old project, and it was designed for that use case. It's not exactly what you're looking for, but it can work for what you need.

The hit and crit bonuses are weapon specific. Any source of hit rate or crit rate that isn't on a weapon is given to both hands, and any that is on a weapon is only given to that one weapon. There is no way to change this currently.

~Ramza

Thanks for the reply. Too bad this cannot be done, I'll figure alternate way buffing dual wield characters then.

I'm having issues with your plugin and VS's ItemsEquipsCore. For some reason, it's not evaluating correctly in the merchant and inventory screens. When looking at a mainhand, offhand, or twohanded items (including shields) while the character's offhand is empty, it just shows "-". If the offhand is full, mainhand, offhand, and twohanded items evaluate correctly, but dual-wieldable weapons only evaluate comparing to the mainhand. I'm definitely caring less about the second part, but the first one is a major problem and is gonna confuse the hell out of players. :(

I believe that is because when the character doesn't have anything in their offhand, the menu considers them only wielding one weapon, so it doesn't show the possible change of the atk value of the offhand weapon.

Unfortunately, I don't have a good way to fix this, as the VS plugins are all obfuscated, and I don't have a way to hook into and change their menu scenes. It's frankly surprising that there was any change at all on that one.

Does it evaluate the proper way on the equip scene?

~Ramza

Yeah, just not in the merchant or inventory screens. I'm trying to figure out a work around but I'm coming up blank. Your plugin is so amazing and I want so badly to use it, but I'm not sure I can if I can't get this sorted.

I think I figured out a work around!! It's fairly simple in concept, but not something I can do by myself. Would you be able to discuss it over discord or something?

My discord account name is on my main page? profile? whatever it is, and you don't have to be my friend, or share any servers in common with me to send me a dm.

I'm not sure when, or how much time I can devote to helping you out, though, since I'm at work right now. But send me what you have and we can work something out.

~Ramza

Took me a bit but I found your discord. Couldn't figure out how to message you without being a friend or sharing a server, tho, and google said it's actually not possible. Sent you a friend request!

(+1)

Hi there! After reading up, I'm starting to think it might be a perfect addition to my project. I'm just wondering if this plugin works with the Equip Slots Core from Himeworks (https://himeworks.com/2015/11/equip-slots-core/) as I need that script to let me dynamically add new equip slots as a quest reward.

Hello there.

I've never tested it with that plugin before. It doesn't do much to modify equip slots, only making it so the second weapon slot can also hold shields, so I don't think there'd be any issues. You might have to change around the load order and see if it works better one way or the other, though.

Of course, if there is any compatibility problems, you can always post about them and I can take a look to try to fix them, too.

~Ramza

thank you, let me see if I can save enough to get me a copy of this plugin then :)

Hey there Ramza, I had a little issue I was hoping you could help with. So I use this plugin, your menu extension plugin and yanflys shop core with MV. I'm not sure if it's your plugin or yanflys that's doing this, apologies if it's yanflys issue. =)

In the image I posted you can see the shop menu. It shows the main hand and off hand weapon being used by the actor looking at the weapons for comparison. As you can see the offhand weapon text is small but shows the whole weapon name but the main hand weapon is larger and there's a large space between the main hand text and the Weapon name text. Which makes the weapons name be cut off.

What I was wondering is if you know anyway to fix the issue with the main hand text. I use the latest releases of your plugins and am on MV 1.6.2. Thanks for your time Ramza. =)

Hey there, wanted to let you know I pretty much figured it out. I was using the codes to change the text color of the words from your plugin green and was closing them off with \c[0] to remove the color. It seems that bit at the end was not needed and caused the issue. The text is however still positioned a bit oddly which would be nice to fix if you know how. Just like in the pic, the main weapon is written on the right side of the window and the off weapon is written on the left side of the window. It would be nice to have them on the same side but a small issue really. Still if you have any ideas a little more polish is always good. =)

Hi Ramza, maybe an obscure question but is there a js script call to check the weapon type in the offhand? I'm interested in this plugin, but I don't use the default RM weapon system. I'm using WAY's custom equip plugin to determine the actor's battler graphic upon weapon equip and it doesn't work well with the default dual wield system. I'm hoping yours might have a better method to check the offhand weapon.

(+1)

It doesn't have anything special built in for doing that, but battler.weapons()[1] should give you the offhand weapon, if there is one. If there isn't one, though it would probably cause a crash. battler.equips()[1] would also give the item in the offhand slot, or the weapon, so you could use that and then do a second check for the items etypeId to see if it's a weapon or not.

I'm back and unfortunately have a new issue, when an actor is holding 2 of the same weapons, the traits are not working at all on either of the weapons when attacking a target. The traits work when I disable the dual wield plugin, but I lose the cool effect of hitting twice and the damage drop from dual wielding. I made a thread about it on the rpg maker forums where I have more info->https://forums.rpgmakerweb.com/index.php?threads/attack-element-cancels-out-when...

(+1)

Hello there.

I just replied to the thread you posted with the fix, but I'll post it here too just in case someone else has this same problem later.

The problem is a bug present in older versions of Dual Wield. Prior to v2.70, wielding two weapons which were exactly the same caused an error in some logic, which meant all traits were removed from both weapons for both attacks. This bug doesn't happen if you're using Independent Items in the YEP_ItemCore plugin, as even though two weapons could be the same actual item, they are considered unique items, and my plugin sees them as different.

To correct the problem, either use YEP_ItemCore, with the independent weapons parameter turned on, or update my plugin to the latest version. 

Note:

Updates to my plugins are always free, so there's no reason not to be using the latest version. Simply go back to your library on itch.io and redownload it from there and you'll have the latest version.

~Ramza

I get an error on an dual wielding char only if she uses a sword and a shield and performs a skill. When she uses two weapons, the error does not occur. I think it has something to do with checking the weapon type of the offhand, but since it´s a shield, it throws the error.  I hope I explained it enough^^

I just noticed another thing.  When a two-handed character only wields a weapon in his main hand, he will attack twice, even if barehanded attack is turned off.

Hey there.

This appears to be an issue with a change I implemented a while back. Originally I had modified the actor.isDualWield() function to return false in battle if the actor was dual wield type, but wasn't currently wielding two weapons. A couple of updates ago, I undid this change, and replaced most of those checks with a new function actor.isCurrentlyDualWielding(), the purpose of this change was so that in battle equipment changing plugins didn't incorrectly determine that an actor couldn't wield an offhand weapon.

It appears after I made this change, the function causing your crash was not updated. With the original change to the dual wield function, it would not have checked the wtype of the offhand item if the actor was barehanded or using a shield, but now it does both. 

I have uploaded a fix for this, in the newest version. The second issue you posted about below is also because of the same thing, the function that determines if an actor is dual wielding, and adds the second attack action was also checking if they were dual wield type, and not if they were currently dual wielding.

~Ramza

(1 edit)

Thank you for your quick update!^^

Unfortunately the second issue is still present and the character double attacks when he wields only one weapon and nothing in the other hand.

I just found out that now a two handed char will always attack twice, when he does NOT wield a shield. Unfortunately even if barehanded attacks are turned off.

I'm looking into this further, but the test project has no such issue. When equipped with only one two handed weapon, there is no extra attack, with or without the barehanded attack option enabled.

Are you also using the monkeygrip extension? The extension might be overwriting some of the changes I just made. Also, if the actor we're talking about has monkeygripping enabled, the two handed weapon in the main hand would be considered a one handed weapon, meaning he should be able to get a barehanded attack as an offhand attack, at least if that parameter was enabled. 

~Ramza

No monkeygrip plugin. All of your plugins are close of the bottom of the list.

*note: I haven´t used the bock chance plugin, thats the reason its disabled.^^

Using MV.  I've checked the loading order, and it...seems correct to me.

Still, I ran into the following bug on boot.  After making sure the weapons weren't equipped until runtime, I met the bug again upon trying to access the equipment screen.

(1 edit)

UPDATE: Managed to solve this by changing the 'includes' calls in isMHAllowedWithOffHandWtypeId and isOHAllowedWithMainHandWtypeId to 'contains' calls.

(2 edits) (+1)

While I'm glad you solved that issue, something about it doesn't add up here.

That function should be given an array from the item with a list of the unequippable wtypeIds in it. array.contains() isn't a function, which I why I used array.includes() instead. It would appear, however, that the item is not getting an array of disallowed wtypeIds, but is instead only getting a string, as string.contains() is a function that exists.

It appears the bug is caused because your item only has one disallowed wtypeId, so it was saved on the item as a string instead of an array. That means when you make an item that has more than one disallowed item with your changes, it will crash the game in the same way as it did before when using includes.

I will correct the way the notetag is being parsed, and upload an updated version shortly.

~Ramza


edit:
I can't find any fault with the note tag in the way it reads the tags to set the disallowed wtypes array. If you don't include the leading space before listing the numbers, it doesn't trigger the notetag at all, and if you include a space after the first number, it pushes a value of 0 to the disallowed weapon types array. Neither of these cause the crash. In the first case, the array would remain blank, as every weapon gets a blank array on database load, and in the second, it would simply disallow equipping whatever item this was with a barehand in the other hand.

I'm not sure why it's not saving the value correctly on your project, but the edit you made will certainly cause the same crash again if any weapon has more than one disallowed wtypeId on it. 

(1 edit)

Interesting.  I see that rpg_core.js has defined it as an additional property of arrays:


(+1)

Alright, well, maybe it'll continue to work then.

I'm still not sure why includes didn't work though. Since it is a default property of arrays, and that is what should be on the items, and more importantly, why it works fine in my test project, and at least one other project out in the wild.

But if this modification works for you, I guess we can leave it at that, lol.

I'm new to the rpg mv making business and I was looking for a plug in play plugin that would allow me to bring duel wielding to my game (and balance it out), but I am met with-

Not too sure of what the issue is exactly or how to fix it. I have the core plugin in as well as the duel wield one under it. The demo map doesn't work either. Some clarification on this would be great!

I figured it out, I in fact did not download the correct battle core plugin. Ignore my previous comment!

Hold on, there was that issue when I used the newest version of your plugin, but when I used the older version from the demo, it works fine. Weird

Hey there. 

The unshift crash happens if you're not using BattleCore. In the very early versions of the plugin, including the one in the demo folder, the BattleCore wasn't technically required, although the plugin still visually looked a lot better when BattleCore was used. In an early update, one of the changes I made to the plugin to make it more plug and play friendly adds a bunch of action sequence commands to the attack skill (and other dual wield skills) which reset some counters and perform some extra clean up after a dual wield attack.

For the most part, this is invisible to the end user, but if you're not using BattleCore, it causes this error.

~Ramza

Hey Ramza.

I've been having troubles with the status page and trying to display crit values with YEP_ExtraParamFormula. Tried on a fresh project and minimal plugins.


When first equipping gear with 5% Crit Rate and checking the status page it appears to calculate normally:


But if you navigate away from the Attributes page and back, it will no longer show the bonuses:


Hey there.

That is a weird thing going on there. Does it also happen to the hit % stat if you do the same thing to it?

I'll try to confirm if this is just a visual problem or if the stats are actually reverting too. I'm thinking its just a weird window refresh problem, but not 100% sure just now.

~Ramza

Heya.

Sorry for the late reply. Yes it appears it does happen to hit% as well. The other exparams seem to be fine, including the ones from your block suite, from my brief testing.

(1 edit)

Hey there.

I looked into this, and after finding some weirdness with plugin order, and my shield block plugin, which I started to fix only to realize it was a plugin load order issue (whoops), I was unable to duplicate this exact problem.

If I leave the crit formula in YEP_ExtraParamFormulas as the default, the MHCrit and OHCrit values are calculated normally. If I change it to a flat value (0.1) then both of them show a 10% crit chance regardless of what's on either weapon, which I think is what should happen in that situation.

I'd need to know what you're using as your crit formula in that plugin to confirm that at least that is working.

I was unable to duplicate the menu display issue at all, though. The numbers changed to be what they should have been every time, and switching away from params, and back again did not cause them to revert to something else, even after changing equipment. I'd recommend disabling the exparam menu fix plugin, as what it does is covered in the DW_MenuExtension, and it's possible the two are interfering with each other somehow. That fix was only to be used if you wanted to show exparams like Mh Hit/crit on the parameters screen without using the menu extension plugin, which changes a lot of other stuff too.

~Ramza

Hey Ramza.

I am using the default crit formula:

(base + plus) * rate + flat


The issue still happens with exparamfix disabled. Additionally, even if I disable ExtraParamFormula, If I equip a weapon with crit chance in mainhand and navigate to the status page it appears to be fine at first:


But if I equip another crit weapon in the offhand and navigate to the status page it causes the split params to default again:


That is all with this load order:


This next part is an entirely separate issue, but it is a bit more of a concern on my part for my project in regards to exparamfix DW edition. Parry, Expertise, and the split crit/hit appear to crash the game when navigating to the attribute page even with the requisite plugins:


Removing the extra params appears to fix the crashing issue. The block/pierce params seem to be fine:


Sorry to dump all of this on you. I really appreciate you.

(1 edit)

Heya.

I'll look into the second thing in a bit, I suspect maybe the exparamfix plugin doesn't support those exparam names, or rather the DW version of it doesn't.

As for the crit % thing, I think I'm getting somewhere on this now. I was about to make a big post with screenshots of my test project, with my plugins in all the same order and whatnot, and show you that I still couldn't reproduce the problem, but midway through typing that out, I realized one thing that might be making my test case different from yours, and that's that my test actor is wielding two different weapons. When I modified my offhand item to be wieldable in the main hand, and gave him two of those instead, I immediately reproduced your problem. 

So the issue seems to be related to using two of the same weapon only. I'm not sure where in the process that would be causing an issue, because I don't think I ever remove weapon stats based on the item Id, but now that I know this much, I can continue in troubleshooting it further.

I will note that if you use item core, each weapon is unique, and this problem doesn't happen with two of the same weapon in that case, so it would appear to be some check I'm making that compares the main and offhand weapons to see if they are the same exact item, it seems.

~Ramza

edit:

Looking into it a bit more, this seems to be an issue caused by not having independent items in your project. Since you're not using item core, and weapons are not unique, the function I used to calculate MH and OH crit and hit ends up removing traits from all weapons of that ID when it does it's check. If your actor is wielding two of the same weapons, that means his crit % on each weapon is take out for each hand, resulting in it only showing his base crit %. This only happens if he's wielding the same weapon in each hand, though.

Additionally, it would be more than just a visual issue, as in combat, I use the same sort of function to temporarily remove traits from the hand not currently being swung, meaning if you have two of the same weapon equipped, it will take the crit % off both of them again, and your actual crit chance will be lower than expected.

I should be able to make a fix for this, but it'll be a bit more involved, since the trait removal thing is important to how the battle calculations work. In the meantime, if possible, using yanfly's Item Core plugin, and using independent weapons will solve this problem entirely (and allow you to use switchable 2h weapons if you want :)

Greetings.

I have uploaded new versions of the menu extension and the dual wield plugin that corrects this issue. 

In the case where the actor is using two exactly identical weapons, and the dev is not using independent weapons from ItemCore, there is now a special case where a temporary object is created in $dataWeapons, which is used as a placeholder for one of the weapons when these checks are being made. After the calculations are done, the fake weapon is replaced with the original, and then it is removed from the database. This corrects the display issue on the menu scene, as well as the same issue in battle during split attacks, which you didn't report, but was caused by the same root cause as the display problem.

Check them out and let me know that everything is working for you.

Sorry, I must be doing something terribly wrong. The attributes still reset with or without item core and independent items. Also without the paramfix I can't get parry and expertise to show up:

Greetings. I cannot duplicate this problem after the update, with or without YEP_ItemCore. Although while troubleshooting it again, I found a display problem with the menu extension + extraparamformula that would've made the offhand crit and hit displays wrong.

I also have no issue with using only the menu extension to display pry and xpt.

Here's a poorly done image with mspaint to show various use-cases

The plugins are the exact same (except itemcore) as yours, in the same order, with the exception of BuffsStatesCore. In your load order, shield block should be immediately after BattleEngineCore, to prevent other plugins from interfering with the stuff it adds to the battle result, but I don't think that's causing this problem for you. Note that I don't think I ever really specified where in the load order to put ParryChance, but it should probably be above BuffsStatesCore as in my order above.

ExtraParamFormula is only using the default formulas for everything in it. 

StatusCore has pry and xpt alone in the fourth column, and, as you can see, I don't have the exparamfix plugin at all. 

The various snippets of the equip and parameters windows show that all four permutations of having two identical weapons equipped in various ways all correctly show the crit % for each hand as they are swapped around. The flail has +70% crit rate, and the actor has 4% base.

With ItemCore and independent weapons enabled, I was unable to duplicate this in the first place using the previous versions of the menu extension plugin. I checked again just now with itemcore turned on and got the same result as above.

I imagine, since your YEP plugin versions are about the same as mine are, that this project is quite old, it's possible there might be a problem with your core plugin files being out of date, messing with compatibility somehow.

I would suggest trying to reproduce this problem in a blank new project, with those plugins alone, and see if the problem still happens there. The last time someone reported weird problems like this with dual wield, it turned out their core files were woefully out of date, and updating them fixed the problem.

It's also possible that changes were made to some of your core plugin files, or some of the yanfly plugins you're using that are breaking compatibility with mine. Like I said, I'd start by making a fresh project, making Harold a dual wielder, and testing from there.

Hey Ramza. Thanks for your patience. I started a new project from about as scratch as it gets.

Fresh MV 1.6.2 install, verified rpg_core and associated files have 1.6.2 in the header and are completely unmodified from fresh install.

Redownloaded entire fresh Yanfly Library from Itch.

Redownloaded fresh chad Ramza suite from Itch.

Started New project. Ensured the name was Project1 and had Theme6 title music, because we are sophisticated around here.

1. Parry and Expertise only show in the status menu if "Show Block Chance" is set to true.

2. If "Split Attack" is set to false then mh/oh//hit/cri and pry/xpt will not show in the status menu.

3. With the fresh install, the split crit/hit params don't revert anymore so I'll have to narrow that down myself somehow. I did notice the non-split crit param did revert though, which might be misleading for non dual wield skills.


These points, may be by design. But I feel that some projects, mine included, would prefer to pick and choose displayed stats and keep a singular Attack Parameter, or otherwise opt to not show block with the main parameters, and just keep it on the attribute/exparam page. This is also why I am personally interested in the "exparamfix DW edition", as it is much closer to my specific needs.

Thanks for your time :)

Thanks for the detailed report.

I was unaware you were not using the split attack parameter, so I didn't think to look into that as the cause of those problems. I'll see what I can find about the normal crit % reverting on its own too. 

I'll look into changing the extension to show those params regardless of show block, or split attack being enabled. That's honestly how it should have been to begin with, and I probably bungled something up during an update a while back that no one noticed until you came along, lol.

Hey Ramza! Dipped my toe into this plugin and it works well so far. But there are two little things I want to do with it.

I have a character who can eqip 3 different weapon types, these are swords, claws and chakrams. The sword is a one handed weapon and can be equipped with a shield. everything fine.

The other two should be weapons for dual wield like 2 metalclaws etc.

Now to the problem. If I equip just one claw, I´m able to equip a shield, but I just want to give the option to just equip another claws. Is this possible? Maybe I´m overlooking something^^

You know, I don't think you can actually do that.

I'd never considered the possibility that someone would want to prevent equipping a shield with certain offhand weapons, and even the tags that prevent a weapon from being equipped with specific other wtypes doesn't include locking out shields for that wtype. 

I thought just now that maybe you could workaround this by disallowing the shield armor via the traits box on the claw weapons, but it turns out you can only allow equipment from that box, not disallow it.

I'll have to add this function in the next update.

~Ramza

Awesome that you wanna add this function, thank you!

I took a look at the <Forbidden Wtypes: x y z> function and it turns out when you have a claw in you your offhand equipped, you can only select claws for the mainhand. This works fine as the description of the function says, but wouldn´t it be nicer if you could select also all the other weapons the character could equip?

Lets say you have a claw in your offhand, it still let´s you equip all the other possoble weapons in the mainhand, but if it´s not a claw ether, it should clear out the offhand. With this version the player could always see all the weapons he can use on the character.

Maybe this is an interesting mechanic you wanna add? But it is not really an important one xD

Greetings.

I have uploaded a new version of the dual wield plugin which fixed a bug, and also added the two features we talked about here.

<Forbidden wtypes: x, y, z> can now be placed on shields, allowing you to specify weapons that cannot be used together with specific shields.

I also added a plugin parameter to show forbidden weapons in the mainhand slot, if they're being forbidden by the item in the offhand. Equipping a forbidden weapon into the main hand when the offhand forbids it will unequip the offhand item, which is functionally the same thing it does when you equip a two-handed weapon in the offhand.

Hello Ramza,

Unfortunately the <Forbidden wtypes: x, y, z> do not work anymore for weapons. I tested it on the previous version and it worked, on the new update don´t.

The new features work fine, thank you for that!^^

(1 edit)

I'll take a closer look at this in the next couple of days. I didn't really change much about how the actual function worked when I added it to shields, so either I made a typo there, or it maybe never quite worked right to begin with XD

Overall, this is working great for me. However, it doesn't seem to work with characters that have +1 attack.  They still only have two attacks when using two weapons.

Hello there.

Turns out, that is a quirk with how I added the extra attack. It might actually even be a bug, now that I think about it. The extra dual wielding attack is just given to the actor as if he had Attacks+1 on him, but is not calculated in the same way, so giving him another attacks+1 trait does not give him a third hit. 

I think this is just a logic problem on my part. I accomplished this by changing the function where it returns the number of attacks+ the actor has, to return either 1 or their attacks+ number, instead of 0 or their attacks+ number. Meaning if the two numbers are both one, it will still only do one extra attack.


Line 891 in the latest version of the dual wield plugin is where this happens:

return Math.max(this.traitsSumAll(Game_BattlerBase.TRAIT_ATTACK_TIMES), 1)

if you change that line to read the following, it will fix the problem:

return Math.max(this.traitsSumAll(Game_BattlerBase.TRAIT_ATTACK_TIMES)+ 1, 1);

-Ramza

Very cool, thanks!

(2 edits)

Hi, everything has worked well for me for a long time, but all of a sudden I started getting a setObject undefined error.

The game was working again when I turned your plugins off.

Do you see anything wrong with my plugin order? It is easy to move something in the plugin order without noticing sometimes.

Edit: The newest plugins I added were for Victory Aftermath & Aftermath Level Up, but I don't see those mentioned in the error log. I can't remember when I added them and I don't think it was in the middle of the current save file. 

(Edit: I disabled Victory Aftermath plugins and the same error occurred.)

Here's the error message I got.

(2 edits)

 I made a new game and I ran into a slightly different error. Two possible issues: 

One, an ally has zero equippable weapon slots and I gave them dual wielding. I assumed it would just think they are bare-handed. 

Two, their weapon's unleashed default attack  was missing an action sequence that would enable it to be used as a duel wielding skill. (The regular attack is also missing that action sequence, but it works, and I don't know how all of these things are handled.)  

My current guess is that the first one is the problem and I am testing it now.

Edit (2-5-2022): I think I solved the problem. I played the old save state that was giving me a problem and it seems to work now. I am guessing the first solution worked. 

You might want to warn people that Equip Core can cause issues if you don't want to find a work-around for the issue.

Hey there.

While the problem you encountered was definitely an issue that didn't happen without my plugin, the reason it caused an error in the first place was because of the misconfiguration of EquipCore, not because of something wrong with Dual Wield. There is a note in the documentation (or I think there is anyway) that advises to make sure you've actually given the actor the dual wield equip type, and not just given them two weapon slots via equip core, otherwise you'd have problems.

By taking away all of their weapon slots, the bit of code that swaps weapons around gets confused and doesn't know what it's doing anymore, causing the crash. Technically that could be considered an issue with my plugin, but the default state would be to always have at least one weapon slot , so it'd usually be safe to assume that the actor has at least one. 

Also, it looks like the version of the menu extension you're using is a little bit older, as the line it references in the crash does not match with that function in the latest version. I'm not saying you should update it, but the latest version does fix a display issue with YEP_ExtraParamControl which you are using.

~Ramza

Hello, I am considering making a purchase of this for a project me and my sister Alice are working on, and in the project we plan to have characters with multiple sets of limbs. How well does this plugin handle actors with like, 4, 6, 8…etc weapon/shield slots?

Hey there.

While I haven't personally tried it for such a purpose I can say that it is very unlikely to work for this purpose. The only way it functions is if the actor is set as dual wielding, which only gives you two weapon slots by default, meaning you'd need to have used a plugin like EquipCore to get extra weapon slots on top of those two, or you'd need to have had another plugin modify the dual wield equip type to give extra weapon slots.

In either case, this plugin expects only a maximum of two weapons, so it would only ever strike twice, and each hit would ignore the stats of only one of the multiple weapons being wielded, the others would be treated as armor, most likely. 

Even if you had someone modify it so that it attacked once for each weapon, instead of hardcoding to twice if dual wielding, there'd still be many other functions and effects that would need to be tweaked to make it work. 

I'm not saying it isn't possible to modify it to make it work like that, but it's not something it will do out of the box.

~Ramza

Okay, thank you for the reply! I think finding a workaround would be something we’ll try.

Hi Ramza, I purchased your plugin today and am enjoying working with it, however, I am running into an issue where my characters attack and the damage dealt is equal to just the weapon's attack power minus the enemy's defense without any regard for my attack formula. For example, I have a longsword item that adds a +5 bonus to attack and when using it for a dual wield attack it only deals the 5 damage to enemy rather than the amount that should be dealt as determined by my attack formula.

I am using Yanfly's BaseParamControl plugin and my formula for attacking is - (base + plus + user.mat) * paramRate * buffRate + flat - as I am using the magic attack stat (represented by user.mat) as a flat addition to my character's attack stat. Attacks are working normally when the actor performing the attack doesn't have dual attack slots enabled but do not work correctly when the character is dual wielding or is equipped with an item with the <twohanded> note tag included with your plugin. The dualwield, twohanded and offhand damage modifier parameters in the plugin are also having no effect on the damage dealt. I think there is some sort of issue preventing these modifiers from working correctly with my attack formula.

In my plugin list I have your plugin beneath the YEP_baseparamcontrol and YEP_BattleEnginecore. I am still very new to RPGMaker MV so if there's any more information you need, or if I'm being too confusing with my explanation just let me know.

Thanks for any help you can offer.

Greetings.

I haven't tested this plugin with baseparamcontrol, but I don't think that's the issue here, or not exactly, anyway.

What is the actual damage formula of the skill being used? This plugin automatically replaces a.atk (or user.atk) with a special calculation depending on which hand is being used. I suspect that calculation isn't taking the baseparamcontrol into consideration, because like I said, I haven't exactly tested with it. If your damage calculation is something like (a.atk - b.def) -a.mat it could end up returning a weird value that ends up being zero somehow, and results in only your mat being used.

Hi, thank you for the fast reply!

The exact formula of the skill being used as a normal attack (in the skill screen) is just ( a.atk - b.def).

I don't know if this is helpful but the formula in the parameters of baseparamcontrol is read as (base + plus + user.mat) * paramRate * buffRate + flat). On my class screen in the database menu I have the standard atk of each class set to 1 for every level with a -1 modifier notetag from the Yanfly plugin so that in theory the attack stat is determined entirely by the Mat + weapon modifier + any skills/buffs.

Are you thinking that your plugin is only factoring in the actual atk stat (in this case 0 + the weapon atk bonus) and completely ignoring the formula in the baseparamcontrol plugin?

Thanks again

That sounds like a pretty good idea of what the problem is, yeah.


Are you also using the menu extension plugin? The equip scene will show the calculated atk values for each hand if you are, which would help show off the problem without actually having to hit something to test.

I'll look into the compatibility with the baseparam plugin, I expect it's a simple fix, I just need to add a check to see if the plugin is installed and then look at that atk value instead of the default actor one.

Hi again Ramza, I installed the menu plugin as you suggested and it confirmed that the attack formula is not being properly factored into the totals.  

I also tried recreating my setup in your demo file and it seems to run into the same problem. Only the base attack stat and weapon strength are being factored in and not the value from the baseparam formula and the offhand duelwielding damage modifiers are not having any effect. The only plugin I added to the demo was baseparamcontrol underneath the coreengine plugin and I was using the same formula of adding the Mat stat into the atk.

As an aside, your menu plugin looks great and has some functionality I was actually looking for earlier in other plugins so thanks for suggesting I try it!

Quick amendment. As a test I raised the base attack of the character above 1. The damage modifier parameters are working, but only on the base attack and not on the bonus from the weapon itself (ie with an offhand penalty of %50 my base attack of 4 becomes 2 while the +5 from the sword stays as a +5).

(2 edits)

Greetings.

As I expected, my formula for calculating main and offhand attack values were ignoring any formulas you'd set in BaseParamControl, instead using the default formula (base + plus)  * paramRate * buffRate + flat. I corrected this issue by using the real base value in my plugin, and then removing the attack values of the opposite weapon, rather than calculate an entirely new value based on the default formula.

I am not 100% sure that this will completely work in your specific case, though, as the mat of equipped weapons doesn't play into the mainhand/offhand calculation, so it may end up giving the mat bonus from both weapons on both the main and offhand hit. I did use your example formula, though I didn't reduce atk to 0, and it did appear to split correctly though, so let me know how that goes.

You can download the updated version of the plugin from the main store page, or from this devlog.

-Ramza

Greetings Ramza, recently, I created a new project which uses your Dual-Wield and Block+Parry Chance plugins. However, it crashes if I have YEP Extra Parameter Formula plugin on, and after I turn that off, for some reason, Parry and Expertise are not showing up (also, the earlier issue I reported a month ago, somehow disappeared in the new project).

I am still trying to play around with the plugins to try and figure out if something else is conflicting, but not sure if you have any idea what might be the cause of the params not showing up (the area where they should be is simply left blank)?

Hey there.

The menu extension is needed for Parry and expertise to be shown on the menu, if it's not there (or it's crashed before the project loads, causing it to not load at all) the YEP menu will not know how to interpret the requested parameters and draw a blank line instead.

Check the console for any errors, sometimes a crash on load just causes the plugin to abort loading instead of straight crashing the project.

Also, please share the crash message (and console stuff) from when it crashes with YEP_ExtraParamFormula as well. I've a couple of crashes from that thing over a long time, and I suspect I know what it is, but I need the errors to troubleshoot.

Hi Ramza, thanks for the response. Here is the crash report from the console for the Extra Param.

I checked the console without the extra paramters, and there is no errors. Block Chance shows up perfectly fine. It's only Parry Chance that is the issue.




Not sure if plugin order is to be blamed.


(3 edits)

Hello again.

I've gotten a chance to start to look into this for you and I need a couple of questions answered before I can continue to troubleshoot. 

I don't see the dual wield plugin in your list. Are you using that?  You must be since the crash error is coming from the dual wield extension, which throws an error if you try to use it without the dual wield plugin.

I can't duplicate the issue with mhpry and ohpry and xpt not showing up on that screen myself, but since I can't see where you're loading the menu extension in the order, I suspect it's being overwritten by the YEP_StatusMenuCore plugin, since I can't see that one either. Load StatusMenuCore before the menu extension and that should sort that problem out.

Looks like the crash that is happening is somehow related to splitting the hit and crit params for dual wielding. I am familiar with this particular error from porting the block plugin to RMMZ, as the extraparamformulas plugin features are included in one of the default VS plugins for MZ. I fixed a similar crash in MV related to block rate already, so I suspect the issue is caused by something similar. I'll get back to you on this shortly.

edit:

Okay, I can't duplicate the crash at all, but looking at the line the crash is coming from, I can see what the problem is, though not how it is caused.

In a fix I posted in v1.39 or v1.40, I fixed an issue where people using the extraparamformulas plugin would see incorrect values for hit and crit when showing the main and offhands. This fix expressly assumed that the scene would always have an actor in it, because if it didn't, how would it be displaying any information at all? Well apparently in some (unknown to me) case, this very thing was happening, so it was causing that crash error when it tried to draw the mhhit value for you. 

I have posted a fix that should resolve this. 

-Ramza

Hi Ramza, thanks for the response. I tried the latest plugin, and there is still an error. The crash happens when I move to a dual wield character's Attributes only.

I also tried turning off the Extra Param plugin. When that happens, Hit% displays fine, but Parry Chance and Expertise does not. With this, I tried turning off SRD Super Tools and ICF-Soft Menu, but no help. Not sure if it is the plugin order, but I moved the Menu Extension to above ICF-Soft Menu's plugin and it still does not work.

Below is a list of plugins I have in excel for reference.


Hello again.

I can't duplicate the crash on my own test project with the following plugins in the following order:


That means that the problem is either load order, or an issue with a third plugin interfering with one or both of the other two. I know this is a huge pain in the butt, but could it be possible for you to try to duplicate this problem in a fresh project? I've tried myself in the test project I use to roll out updates and haven't had any luck myself.

Hi Ramza, sorry, another question. If I am using a custom menu plugin (e.g. ICF-Soft's YEPShow Params), what is the short name to call the main or off hand's attack, respectively, to show as a param? The reason I am asking is because ICF-Soft's plugin conflicts with yours, and I tried mhcalc and ohcalc, but it's not working. Looking forward to your response. Thanks in advance.

MHCalc() and OHCalc() should work for this. Make sure to include the brackets, as it is a function that returns the value, not the value itself.


I'm not sure how that plugin gets its values, but those functions are on all Game_Actor objects, so that should be what you need.

(1 edit)

Hi Ramza, thanks for the reply. The plugin calls the shortname of the param as it appears in the damage formula (e.g. agi, luk, etc). It, unfortunately, looks like it will remain incompatible (although I can still show main and offhand attack in the "General" section of YEP's Status Menu by keeping the default; in fact the other plugin can't seem to override this section). I have written to the plugin author on this, as their plugin seems largely compatible with a lot of plugins, just not functions like yours.

Hey Ramza, I purchased your plugin last year and works great. But I have one issue. My duel wield attacks, even after the enemy is gone. Is there a way to stop attacking once the enemy is dead? sorry for the nube question

Hi there.

Someone asked this question before, and my experimenting with a workaround to make it work for them actually led to me incorrectly thinking I had a weird bug in a newer version.

There is no way to prevent the second attack in the case that an enemy dies after the first one, not within this plugin, anyway. The way the attack times + trait is programmed is that it just repeats the target action section multiple times, as if it were all part of the same sequence. It doesn't do a check in between. My plugin simply hooks into this, and swaps weapon stats around (and images) when the second attack is made. 

What you can do is make your attack sequence check to see if the target is dead first, and not do anything in the target section at all. This will cause the second attack to not happen if the first killed the target, but it has another issue in that action sequences that already contain and if check will not work, as they can't be nested. You could get around this with a different plugin (like this one by SergeofBIBEK).

If you're not using Yanfly's action sequences plugins at all, you'll need those in order to make this change first.

If you're already using an action sequence, simply wrap the target action in a check to see if the target is dead, and if it is, do nothing:

before:

<target action>
motion attack: user
wait: 12
attack animation: target
wait: 3
action effect: target
wait for animation
</target action>

after:

<target action>
if (target.hp > 0)
    motion attack: user
    wait: 12
    attack animation: target
    wait: 3
    action effect: target
    wait for animation
end
</target action>

Like I said above, if your sequence already has an if check in it, nesting them doesn't work, but you can fix that with the plugin I linked.

-Ramza

(+1)

Thank you so much! I use Yanfly of course.  I've used the link you sent and it seems to do the trick! Love your shield plugin btw! 

Hi Ramza, wanted to check, is this or your other plugins compatible with YEP's Stat Allocation? I was reading through the tutorial and it does not make any mention of this plugin anywhere. Appreciate your advise. Thanks in advance! 

Hi there.

I haven't tested that plugin specifically, but here's what I can gleam by looking at it:

  • It should be mechanically compatible. Stat points spent in ATK will apply correctly to both main and offhand attack values.
    • It might be possible that ATK added from this might not be multiplied by the offhand or two-handed multipliers, I think it should work, but, like I said, I haven't tested it. The multiplier is added after other effects that modify the base param, so it should apply after this plugin.
  • The scene showing the stat purchasing should only show base params, and by looking at the video for this plugin, it doesn't appear to be reusing one of the scenes I directly modified, so it should continue to do this, and will not show the split params in this window. 
  • As above, because this window doesn't show the split params at all, there should be no issue with a blank slot, or Block Chance showing up on this scene either, if you're using that plugin as well.

In conclusion, it should work, but it hasn't been tested. There's no reason why it shouldn't work, and any incompatibilities would be minor, and pretty easy for me to fix if someone were to report any.

-Ramza

Hi Ramza, many thanks! Will try it out.

Hi Ramza, I did some testing, including with the Block Chance, Parry, and Switchable plugins and everything worked fine. However, as soon as I start using the Menu Extension (both with and without the exparamfix), I got the below message. I think I can live without the Menu Extension, but just highlighting the bug I received.

I just tested myself and I am unable to duplicate this issue. 

It looks like, from the error message, something on screen is attempting to draw block chance. Knowing that, I imported it into my test project, and set the default parameters to include both 'blk' and 'cri' to see if xparams were what was causing the issue for you. Block Chance doesn't show up on the scene at all, which it shouldn't as the YEP plugin has no idea what 'blk' stands for, and critical hit chance shows up fine with no crash and no issue.

Load order may be the problem. This worked for me with the Yanfly plugins in the proper load order (from the website). Block Chance loads right after Battle Engine Core, Dual Wield loads at the end of the other battle plugins. The Menu extension should be in the load order near the bottom, after any other menu plugins you have. In my case it was also below stat allocation in the load order.

That expram fix plugin you're using is meant only for people who aren't using the menu extension. It adds some short codes to show on the YEP Status Menu Core scene, but the menu extension already does this, so using both might also be causing a problem.

If you're still having problems, a few more screenshots, what you are doing exactly to cause the crash, and the text from the console when it crashes (press f12 when the above crash screen happens and click 'console') will make tracking it down much easier.

Hi Ramza, thanks for the response. I am following Yanfly's order, but the rest are a bit harder to figure out. I followed your instructions, but there is still an error (though somewhat different).


I managed to remove the Galv_WeaponProf error by moving it just below YEP Battle Engine the order but I could not figure out the rest. Below are the location where I slotted in your plugins.




(+1)

Greetings.

I still can't reproduce this on my test project, and it looks like the version of the stat allocation plugin I'm using is not the same as the one you have, as the functions throwing the error are on different lines on my version.

With that being said, I suspect the problem is the below function:

Yanfly.StatAlc.Game_BattlerBase_xparam = Game_BattlerBase.prototype.xparam;
Game_BattlerBase.prototype.xparam = function(xparamId) {
  var value = Yanfly.StatAlc.Game_BattlerBase_xparam.call(this, xparamId);
  value += this.xparamAllocationBonus(xparamId);
  return value;
};

I'm not sure at what point it is called, but it would appear that it isn't playing nice with the fact that I've defined block chance as xparamId 10. So it's looping through the normal xparams and then getting to block chance and breaking. I think if we edit the function to abort if it detects that it's on Id 10, it should be fine, but since I can't duplicate the problem myself, I can't verify if the fix actually works either.

Copy the below text into a blank .js file, and import it into your plugin manager at the bottom of the list.

Yanfly.StatAlc.Game_BattlerBase_xparam = Game_BattlerBase.prototype.xparam;
Game_BattlerBase.prototype.xparam = function(xparamId) {
  var value = Yanfly.StatAlc.Game_BattlerBase_xparam.call(this, xparamId);
  if (xparamId != 10) value += this.xparamAllocationBonus(xparamId);
  return value;
};

This will overwrite the function that I suspect is causing the issue, and should(hopefully?) fix it for you. Let me know if it doesn't work, and any new errors you get.

-Ramza

(+1)

Hey Ramza would you consider putting on a summer/end of corona restrictions bundle together with some other creators? 

Idk if I'm alone on this but I haven't gotten Irina's or Olivia's  bundles bc they're both ~45 USD/60 CAD on their own. If the 3 of you had a deal going until Jun 30th/July 1st to co-op a 60 USD bundle.. I'd be willing to bet there'd be an increase in sales for each of you since more people are coming here due to the political bundles pulling in larger-than-usual sales, and catching media attention. 

Granted, I'm being opportunistic and asking bc I want to support the 3 of you, but I also don't want to drop a third of a month's living expenses  when 70% of my offline work was shut down á la covid/closed borders. 

P.S. - I looked for a way to ask privately, but I can't DM on twitter & I haven't found an email haha. Apologies if this is a misplaced message.

(+1)

Hello there.

I admit that I hadn't really considered such a bundle, or even a sale for the end of the pandemic. Technically, the sale I ran from April to the beginning of May was the biggest discount I had ever done, and the description definitely included some "Stay inside, make games instead" sort of language, and I don't want to have multiple sales really close together, particularly for similar reasons, because that can lead to consumer confusion, and sometimes people refunding bundles or individual plugins to buy the newest bundle as it's a slightly better deal, maybe.

Speaking of confusion, one main reason why I can't see myself doing a collaborative bundle with Irina or Olivia is that many of their plugins aren't strictly compatible with my own, and the majority of the others haven't been tested. If we somehow came together and made a giant collaborative bundle, it'd come with the caveat that several of the plugins included in it may  (nay, most likely will) not be compatible with each other, and I feel like that is going to lead to large influx of people who didn't read, or didn't know, making support posts in all of our channels asking for support that we will not be able to give. And since it's particularly difficult to held hold of Irina and Olivia, and I don't think either of them do much in the way of plugin support, a lot of those posts are going to fall to me, and I simply won't be able to help. 

In the end, that's probably going to lead to some refunds, realistically, and that isn't helping anyone involved. Customers get a bad taste in their mouth, the three of us get harassed, and everyone pays for it. Not to mention the possible fall-out, if word gets around that someone got a refund on the whole bundle because it wasn't compatible and they felt ripped off, maybe more people who bought the bundle get refunds too? It's a slam dunk, and then a bunch of people have some plugins they didn't even pay money for.

The other reason for not doing something like this is a bit more simple. I don't have any way to communicate with Irina or Olivia. Both of them make it very difficult to talk to them, especially about plugins. DMs on discord are blocked, and I don't share any servers in common with them that allow me to talk to either of them. If there is some sort of secret discord server that the disciples of Yanfly communicate on, I am not privy to it, unfortunately. Both of them have comments on their individual plugins turned off, and no community forum here. And both of them seem to ignore DMs and posts on the RPGMakerWeb website in their plugin support topics. With no special way for me, as a creator, to get in contact with either of them, there's no way for me to approach them and set up a deal like this in the first place. I might be open to such a deal if one of them approached me about it, but we'd have to iron out how the obvious incompatibilities of our plugins will be handled.

That being said, I appreciate the thought you put into your request, and I don't mind that it's asked publicly. For reference though, I can be reached on Discord via DM (Ramza#3215), I have a support topic linked on my profile here on the RPGMakerWeb forums as well, although that topic is kind of dead, necroposting it is alright., and I also respond to DMs on that site as well, which you don't need a certain number of posts or like to send.

(+1)

Firstly, thank you for even considering the idea. :D And fair points all-around. I kind of ADD'd into the "What if?" and some of your points (possibility of contact, refunds, compatibility, customer confusion) I hadn't considered even tho they seem obvious on 2nd read.

Secondly, my apologies. I missed your sale and just jumped into "Maybe it hasn't happened before?" Thank you for pointing out you've already -- and recently -- had a larger sale. More due diligence on my part for next time an idea bubbles up.

Finally, idk how often you're told this as a creator or just human-to-human, you're an awesome person. The values you appear to rep, the way you handled a weird question, reply time etc. I didn't expect to feel good after asking a question, yet I feel amazing. That's something I'm going to work on passing on when I create the useful/fun things. :P Ehm, thank you for being you haha

(+1)

Hey, thanks!

I don't personally feel like I'm doing anything special here, just acting as I think everyone should, but it's good to hear that people appreciate it! Sorry you missed the sale, but itch.io usually does a summer sale too, and I'm sure I'll have something on there to your liking ;)

Keep doing what you do! I'm looking forward to testing out the waves of projects coming out that use my plugins. It helps me cope with the fact that I never seem to release anything of my own!

-Ramza

Ramza, while under most circumstances I wouldn't want to change this - the plugin has worked great for its clearly intended cases! - is it possible to disable or evade the functionality where, while attacking with one weapon, the stats from the other weapon are ignored (I think the code treats it like you've unequipped the other weapon)? 

I'm considering a specific use case like West of Loathing, where the player has equipped both a melee weapon and a gun, gets what what is effectively a FIGHT command for each weapon (using only the damage formula for each), may have skills that key off of the damage formulas specific to either weapon, but still always gets to retain the stat boosts from each weapon.  It seems I could do all of that with Dual Wield and Weapon Formulas, except that at the very moment of attack one would un-equip one of the weapons.

Hmm.

I think the disable state might be what you want to use here. When it's on a battler the split attack (and the extra hit) don't function at all, so the weapon unequipping shouldn't happen either. Since you're using specific attack skills to attack with the main and offhand weapon, using a.MHCalc() and a.OHCalc() in place of a.atk in the formula for those skills should split damage correctly as well. You might need to do some weird workaround in your action sequence to get the offhand weapon to show up correctly during the action sequence for that skill though.

Hey Ramza, I'm having an issue where with the newest version of dual wield installed, certain weapons will only deal 0 damage. In previous versions I had the issue when the dual wield/two hand modifiers weren't 1, but now even when it's 1 it returns 0. Is there any fix for this?

Hey there.

This is the first I'm hearing of an issue like this, so I suspect the problem has to do with plugin configuration. The way the damage formula works, if it causes an error, or would otherwise return a value that isn't a number, the game engine forces it to deal zero damage instead.

To narrow down what is causing the problem, you'd need to determine what is causing these specific weapons to deal zero damage.

  • Are they all one-handed? Two-handed? A mix of both?
    • The plugin parameter for the two-handed weapon modifier is expecting a float value, If you provide something that isn't a float value, it would cause an error and return zero during the damage calculation.
    • Ensure that the numbers in those boxes are only numbers. eg: 1 1.5 0.75 Do not use a % sign, or quotation marks.
    • If changing this has no effect, you can also delete the plugin from your plugin manager and re-import it, which will set the modifiers back to their default values. This part of the plugin should work fine without being modified by the end-user, so removing and re-adding it should also make it work fine.
  • Are you making use of the new(ish) note tags <TwoHanded Attack Modifier> or <Offhand Attack Modifier> to modify the attack value on weapons directly?
    • If yes, are all weapons exhibiting this problem tagged with one of those tags?
    • Try removing these tags and see if the problem is resolved. If it is, there may be an issue with the way you're using the tags on your items. If the issue persists this is probably not the culprit.
  • Do you use the switchable weapons extension?
    • Are weapons with this problem switchable?
    • Are all weapons with this problem switchable?
    • Are they in one or two-handed mode? Both?

The issue could also be that your damage formula itself is simply being reduced by enemy defense with some weapons so low that it deals zero damage. Try setting an affected weapon to a ridiculously high attack value and see if the problem still persists as well, just to be sure.

-Ramza

Ramza, any idea if this works properly with Octopack's battle system?  Other dual wield scripts do funky things like making you have to select attack twice, I'm assuming because of the timing of the system (actions are taken immediately after choosing them).

Hey there.

The only plugin from that system that I know it works with is the weapon swap plugin, and only if you download the included patch. Even then, it doesn't work very well at all, especially in the menus.

Olivia disabled dual wielding in that plugin (probably in the other octopack plugins as well), either because in a true octopath-based battle system, there would be no dual wielding, or because there was some kind of issue with dual wielding she couldn't fix.

In either case, as I only own a copy of the weapon swapping plugin, it is the only one I have made a patch for. Since it appears from that plugin alone that Olivia didn't want dual wielding in the octopack, it's likely it's been disabled in one or all of the other plugins as well, and probably causes even more issues with them if you were to use my patch.

Ah, okay.  I'm only using the turn system from it if you think that would make any difference (none of the other optional things), but the turn system is probably what is the most likely culprit for screwing things up.

Sadface.

Is there a way to always make the second attack of dual wield miss if the first attack kills the enemy or if it has 0 hp?

(1 edit)

I toyed with this earlier, and it's possible via a conditional branch in your action sequence for the attack skill.


Because the target action part of the sequence is repeated for each attack, if you wrap the whole thing in an if check that checks the targets HP, you can effectively not do the second (or any subsequent) swings if the target has 0 HP.

When I was investigating a bug report a few weeks ago, I'd forgotten I'd set this up on my action sequence in my test project, and thought my update had broken the offhand attack, but it turned out my first hit was strong enough to kill the target.

if (target.hp > 0)
motion attack: user
wait: 12
action animation: target
action effect: target
wait for animation
else
death break
end

Thanks. this is perfect!

This plugin is awesome and exactly what I was looking for dual wielding!

I do have a request though.  I was hoping to use a different battle system: Lecode's Tactical Battle System, which doesn't seem to be compatible as it changes a lot!

I was hoping you could look at the code and see how easy it would be to make a patch so I could use both plugins at the same time as I'd love to use them together.

Thanks so much!

Hello there.

I can see that the plugin you linked is supposed to be compatible with Yanfly's Battle Engine plugin, but I am unsure just how far that compatibility goes. I don't have a leTBS project set up to test from at the present, and it will not be a quick task for me to do so, as I don't personally use that plugin myself.

Since I'm not sure how much of BattleEngineCore actually makes it into use in leTBS, I'm not real sure where the incompatibility actually is. It could be as simple as the Attack Times+ trait not functioning in leTBS, or it could be as complex as action sequences not being implemented at all. Or both. 

To start, could you describe what does or doesn't happen when testing in your own project? Does a second attack occur for dual wielding actors at all, just with the wrong damage/animation/weapon, or does only one attack happen? If only one attack happens, does it show both the battle animations for each weapon on top of each other, or just one animation? Does it simply crash and not work at all?

I expect the menu stuff should probably still be working fine, except unless leTBS has some sort of in battle status menu, in which case it would need to be patched to work with the offhand weapon slot properly.

I can't guarantee I'll be able to patch it to make it compatible, but I can give it a shot.

-Ramza

Thanks for the quick response! 

Yes, everything menu-wise works, but when a dual wielder attacks it simply attacks once with only one animation.

The traits are combined into that one attack just like the normal dual wield trait.

Also, I do understand that any patch takes time and effort and with LeTBS changing the battle system it may be even more difficult, I'd be more than happy to pay some sort of commission.

Hmm. 

I just tried to download the TBS plugin from his github page and it seems to only be a 'Hello World' page, with a 404 given when I try to click a direct link from the RPGMakerWeb forums. Maybe he's in the middle of a website update or something. I'll try again later.

This one may work better for you, and thanks! https://www.dropbox.com/s/v3lken92crff4sf/LeTBS_0772B.zip?dl=0

I'm also using Lecode's TBS w/ Dual Wielding and having the same issue. It looks like AttackTimes+ isn't referenced at all in the LTBS plugin. Even w/o your plugin, simply giving an actor a +1 attackTimes+ trait does nothing in LTBS. I'd very much appreciate if you got this working, thx!

I haven't had an opportunity to look into this the last couple of weeks because of my whacky work schedule, but I am still planning to work on a fix for it.

Hello again.

I apologize for how long it took me to get back to you on this one. Unfortunately, after digging into the LeTBS plugin a bit, I can only conclude that I don't know enough about how this plugin works to get it working together with dual wield. 

I tried to find the part of the plugin where it processes the attack action specifically, as a starting point for how to make this compatible, but the plugin is massive, and has little documentation. Blindly poking around inside did not prove to be very effective. If support for Attack Times + as a trait were to be built into leTBS, I feel like dual wield would probably work almost 100% with just that change, but since I can't personally figure out where the attack sequence is even processed, let alone what to change to make it duplicate certain parts of it, I will be unable to do this myself.

There are also some unforeseen compatibility issues to do with the lack of working action sequences in leTBS. My plugin relies on secretly adding commands to the action sequences to reset some attack data between skill uses, which is why YEP_BattleEngineCore is a hard requirement. While leTBS supports BattleEngineCore, it does not seem to make use of action sequences at all, which means any compatibility patch between my plugin and leTBS will need to find a new way to reset this attack data.

As it is right now, you can use dual wield and the extensions with this plugin, but they do not split damage, or effects, or hit multiple times. You can still use this to make dual wield actors capable of wielding shields in their offhands, make weapons that can only be wielded in the main or off hands, or two-handed, and make shields that can be wielded with two-handed weapons. As is, the only thing I could suggest to try to get the core features of this plugin to work are to contact someone who has a lot more experience working on the leTBS plugin.

Sorry.

Thanks so much for looking into it for me! I really appreciate it! I knew it was going to be a long shot because of how much it changes the game. Just being able to have my characters properly equip their weapons and shields is already amazing. Thanks for the awesome work you do!

In the menu extension:

Is it possible to detect if an actor has money grips for a display change:

1) If they do then no change

2) but if they don't: the eqiupment slot for off-hand text that normally reads "empty" (using YEP_Equipcore empty text) could be changed to a term listed  in the plugin settings like "used", "2-handed" or "locked" when player has a <Twohanded> Weapon equipped in the main hand.

It currently it allows player to click the off hand equip slot and open a window that is always blank because no weapons fit the equip requirements without monkey grip. Can we remove this potential confusion to the player by locking this screen and adding the new text?

That's a decent suggestion, but it doesn't account for shields tagged <Offhand>. These shields can be equipped even when an actor has a two-handed weapon equipped, so there is always the possibility of equipping something in that slot, even when a two-handed weapon is being used.

Of course, one could say that for a project where shields aren't a thing, or where light shields don't exist this is a good suggestion. I'd like to keep this plugin as cookie-cutter as possible, though, so I don't think I can roll this into the main plugin.

However, for your own personal use, I'd look into the below function from YEP_EquipCore. The function is used to draw the 'empty' slots on the equip scene, and you can add in whatever functionality you need from here.

Window_EquipSlot.prototype.drawEmptySlot = function(wx, wy, ww) {
    this.changePaintOpacity(false);
    var ibw = Window_Base._iconWidth + 4;
    this.resetTextColor();
    this.drawIcon(Yanfly.Icon.EmptyEquip, wx + 2, wy + 2);
    var text = Yanfly.Param.EquipEmptyText;
    this.drawText(text, wx + ibw, wy, ww - ibw);
};

Add in an if condition, and check this._actor.icanMonkeyGrip() or alternatively a (this._actor.equips()[0] && !this._actor.equips()[0]._isTwoHanded) and that should handle what you're looking for.

Might come out a little something like this:

Window_EquipSlot.prototype.drawEmptySlot = function(wx, wy, ww) {
    this.changePaintOpacity(false);
    var ibw = Window_Base._iconWidth + 4;
    this.resetTextColor();
    if (!this._actor.canMonkeyGrip()){
        this.drawIcon(Yanfly.Icon.EmptyEquip, wx + 2, wy + 2);
        var text = "Locked";
        this.drawText(text, wx + ibw, wy, ww - ibw);
    } else {
        this.drawIcon(Yanfly.Icon.EmptyEquip, wx + 2, wy + 2);
        var text = Yanfly.Param.EquipEmptyText;
        this.drawText(text, wx + ibw, wy, ww - ibw);
    }
};

Just paste that code into a blank js file and import it into your plugin manager anywhere below YEP_EquipCore and that should do it.

-Ramza

Thank you!

Should an actor be able to equip a shield and a twohanded weapon at the same time? Shouldn't twohanded "block" <offhand>

That code writes Locked for all equip slots but I think I can take it from here. 

Thanks again.

The intent was that an offhand shield is like a buckler, a tiny shield bolted to the forearm that allows basically full use of the hand for holding other things.

Oh yes this does make sense

Hey Ramza,

Do you plan to implement the possibility to change weapon during a battle ?Thanks a lot !

Greg

Greetings.

That request is a bit outside the scope of this plugin. I'd recommend Yanfly's change battle equip plugin, or possibly this free plugin by Jeneeus Guruman on the rpg maker forums for changing equipment mid-battle.

As far as I'm aware, this plugin should be compatible with either of those. If that isn't the case, let me know and I'll see what I can do to fix it.

-Ramza

Hey Ramza, I'm getting a minor visual bug when using the Split Attack parameter in the Menu Extension. The weapons' attack appear to be drawn really close together vertically and the text squashed in horizontally. I am using Yanfly's Core Engine to adjust the Line Height to 50 and using a much larger font size to accommodate a native 1080p display. It's also very possible its on my end, as I am using a rather large plugin suite. The display does go back to normal if i toggle the Split Attack to false.

(1 edit) (+1)

Greetings.

Thanks for the report. This issue is caused because I had hardcoded the value to draw the offhand attack text/dark rectangle to offset from the first one by 30 pixels. The standard padding is 32, if I'm not mistaken, and to make room on the default resolution screen, I shrunk it by 2 pixels, and injected the offhand line using the extra space that afforded.

I can push an update that un-hardcodes this value, allowing you to specify it in cases like yours, where you've changed the default line spacing to make up for a resolution change and/or larger font choice.

Alternatively, you can manually make this change. Between lines 1205-1257 there are several calls which reference a 'y+30'. If you change that 30 to something slightly larger, it will shift the line down a bit. Fiddle with that number until you get equal spacing between the Off Strength line and the Toughness line below it and you should be good to go.

Edit:

Turns out, I had a few minutes, and since I'd already went to the trouble of finding out which lines to change, I went ahead and fixed it in v1.34. I have just uploaded the updated menu extension plugin, you can download it here.

Thank you so much, your support is world class <3

Hey again, it seems a similar occurrence happens in Yanfly's Party System. The second hand draws in overlapping. I was able to edit the dark rectangle's and parameter's Y locations and get everything working out more or less:

But if I added to the Y value of the line height to get it even with the equipment's side and the rest of the game, I wasn't able to figure out a way to get the gaps right after the first two slots, it seems the other 5 move as one entity, so they forever overlap. I'm also not very proficient in JS, so I'm sure I'm looking right at it. I'm not too concerned, since how I have it currently is quite legible already, just thought I'd drop this by you for future folks having the issue :)

Also, another suggestion: As seen above, I edited the syntax of the Parameter Name and the Slots' Priority Name variables with an adorable little colon thrown in. I find it more "readable" to have the parameters all lined up neatly on the left with the rest, just a preference, because I can certainly see why somebody would want the slot's name first. Maybe you can accommodate a variety of devs by adding a Plugin Parameter similar to one in ItemCore how it handles name formatting with affixes, utilizing escape codes? ie: "%dmg : %mhs"

One last question, any plans to add compatibility with YEP_X_InBattleStatus?

Thank you!!

(+1)

Hey there, sorry for the late reply, I didn't see this message until just now.


Your first issue stems from the fact that I shrunk the default line spacing by a couple of pixels to make the extra line fit on the screen for the default resolution. I'll add a plugin parameter to disable that, for people who have larger resolutions, as it's not needed, and it should make the scene line up correctly in your screenshot. I'll also fix it so that the new parameter I added in the previous update also affects the party scene, as I hadn't released it was having an issue there as well.

Your second suggestion is a good one, more customization is always good for a plugin like this, to help a wider audience get their menus just the way they want them. I'll see what I can do about making that change.

I did not have plans for this to work with the in battle status plugin, as I don't use that one myself, but it shouldn't be too difficult to add that one in. 


I can't give a timeline on these changes, but it shouldn't be too long. I'll keep you posted.

(+1)

No worries! You're the best Ramza!

I have uploaded v1.35 which extends the fix from 1.34 to the party formation scene, and also unhardcodes the forced shrinking of the lines for the dark rectangles. Mess around with the new plugin parameter value a bit, and I'm sure you'll be able to get it to line up.

Hey there Ramza, I just had a quick question. I was just wondering if there was anyway to have an actor have a different off hand damage % than the default set in the plug in parameters.

My idea is to have an actor and an item that is "ambidextrous" so they get no penalty from the weapon in the off hand slot. If this isn't doable no big deal at all. I know there isn't any listed code to do that but thought maybe you knew of a script command to over write that or something.=)

(3 edits) (+1)

The boxes for the dual wield modifiers (two-hand, offhand, dual wield damage %) are javascript evals.

This means you can use a ternary operator to make the value one of two values depending on a conditions.

if you put the following in your offhand modifier parameter box, it will increase the offhand damage to 90% if the actor has a state, or if the actor doesn't have the state, 75%.

(this.isStateAffected(X)) ? 0.9 : 0.75

because of the way the plugin uses this formula (this) is the actor. In the above statement, if the actor is affected by state X, his offhand modifier is 90%, but if he isn't, it's the base 75%.

You can also nest these, if you have multiple states that change the penalty (or grant bonuses)

(this.isStateAffected(X)) ? 0.9 : (this.isStateEffected(Y)) ? 0.99 : 0.75

It doesn't have to be a state either, anything on the actor object can be used, such as his name:

(this.actor().name == 'Harold') ? 1.12 : 0.75

Hope this helps.

Awesome this is perfect. Thank you very much for showing me this, You're the best Ramza, keep up the amazing work.

I just came across a bug with the new menu extension tags. When you change an equipment slots name and then change to a class that has no change to the slot name, the slot will keep the changed name rather than revert to the default plugin parameter names. This can be fixed by giving every class a tag so it isn't all that big of an issue just thought I would let ya know.

(+1)

I have corrected this in the latest revision B. It is available at the same download location.

Apologies for all the problems with this, like I said, I didn't get much of a chance to actually QA test it before I put it up.

No worries at all I'm just stoked it wasn't that big of an issue and you were able to fix it all np. Keep up the great work, you're the best.=)

I tested the update it works great.

Hey there Ramza. I ran in to a little something and I just thought I'd run it by ya. So I named the first two equip slots mainhand and offhand. That works fine but I also have pets that use weapons the mainhand offhand looks kind of odd in their equip area.

I was just wondering if you knew of a way to make an adjustment to that something  like overwriting a different name for certain classes or maybe allowing different, extra equipment type slots to take the place of the first two equip type slots. 

I can live with things the way they are but I just thought I would ask to se if you had any thoughts.

(+1)

Greetings.

I didn't previously have a way to do this, but I just rolled it into the menu extension addon. Someone had asked a question earlier about the names of the slots, and it made me think that he was asking for this feature, so I'd started looking into ways to do it. But then it turned out I misunderstood what he was asking for, so it wasn't needed anymore.

If you also have the monkey grip plugin, you'll need to update it to the newly released version 1.01 to support the slot name changes I made in v1.33 just now. Let me know if there are any issues with it, I didn't get much of a chance to thoroughly QA test it myself, beyond making sure it displays correctly, and doesn't cause a crash (of which, there were several).

-Ramza

(1 edit)

Hey there Ramza, huge thanks for adding the feature, I think that will really allow some nice polish for people using the plugin. The plugin is however crashing any time I select a character from the equip tab. I tried a bunch of things to see if I could get it to work but it crashed every time.

It crashes on actors with or without the new tags. It crashes no matter where the tags are, ie. Actor box, class box or both. I moved the plugin order around as well and no change.

I'll post an image of the crash report for ya. 


Edit: the image doesn't seem to be showing up, I'll post the console. Also when grabbing the console error I noticed that after I moved the plugin down in the order the crash on people without the new tags wasn't happening, I had to get the crash from an actor with the codes.

YEP_CoreEngine.js:1098 ReferenceError: actor is not defined
    at Window_StatCompare.showMainHandName (Ramza_X_DW_MenuExtension.js:1121)
    at Window_StatCompare.drawSplitNames (Ramza_X_DW_MenuExtension.js:1314)
    at Window_StatCompare.drawItem (Ramza_X_DW_MenuExtension.js:1204)
    at Window_StatCompare.refresh (Ramza_X_DW_MenuExtension.js:1103)
    at Window_StatCompare.setActor (YEP_EquipCore.js:818)
    at Scene_Equip.refreshActor (YEP_EquipCore.js:995)
    at Scene_Equip.refreshActor (YEP_X_EquipCustomize.js:180)
    at Scene_Equip.refreshActor (YEP_X_EquipRequirements.js:982)
    at Scene_Equip.create (YEP_EquipCore.js:915)
    at Function.SceneManager.changeScene (rpg_managers.js:2005)

(+1)

Hey there.

Sorry about that. When I was in the process of making the changes in the plugin, I used 'actor' as a stand in for 'this._actor'. Then I went through and changed it to what it was supposed to be... in everything except yanfly's equip scene, I believe. I'm not sure how that slipped by me, but it's been fixed and is available in revision a, which you can download from the plugin page.

As for the load order fixing it, if you have the monkeygrip plugin, it should be loaded after the menu extension, as it adds on to some of the functions that draw menu modifications, and it needs to load after those scenes. Additionally the menu extension should be loaded after the YEP menus that it modifies (equip, shop, status, party system, class change). If you don't load it after these, some of the menus will probably look a bit funky.

You're the best, it all works perfect now. This is a great addition thank you for adding it. Thanks for the info about the plugin order also, I am pretty sure I had it too high up.

Can you add the ability to customize "main" and "off" so someone could put stuff like "left" "right" "Main-hand" "Off-hand" "primary" "Secondary"

Those are already included in the plugin parameters.


...Unless maybe I have those parameters, and then never used them in the actual menu scene... I will investigate when I get home to be sure.

The menu extension plugin contains parameters for you to set what the main and offhand slots are called. The default is just 'Main' and 'Off'. Using longer names like 'Right-hand' make the status scene look a bit squished, but on wider resolutions that would look fine too.

Unless I'm misunderstanding you, and you're actually looking for a way to dynamically name that slot... Like some actors it says 'right' and others it says 'primary'. That's something I can definitely do if you're looking for it.

Found it, thank you. Is there a way to cancel the seconded dual attack if the first one killed the enemy.

There isn't a way to do that within the plugin itself, as it simply repeats the target action section fo the action sequence on the attack skill.

If you're using the YEP_X_ActSequence packs (which I highly recommend as they're free) you could wrap the entire action sequence in an if statement that checks if the target has more than 0 hp before performing the action sequence.

This isn't ideal, as you can't nest if checks in an action sequence without another plugin, so if your action sequence already has an if check in it, it won't work.

The default action sequence looks like this:

perform action
wait: 10
action animation
wait for animation
action effect
death break

So a dirty modification to your default attack skill would be to add the following notetag to the attack skill in your database:

<target action>
if (target._hp > 0)
perform action
wait: 10
action animation
wait for animation
action effect
death break
end
</target action>

I can't think of a way to stop the extra attack if the target dies otherwise. Battle Engine core makes it so that even if you deal 12000% of the enemies hp in one hit, the rest of the action sequence will continue to play out.

Last Question and I think I have everything set up. Using SRD_BattlePopupCustomizer.

I am trying to make Parried and Blocked pop ups. Do you know what I should be putting in Custom Condition?

(1 edit)

I don't use the plugin myself, but briefly looking at SRDs video on it looks like result.isBlocked() and result.isParried() should be what you're looking for. While the text without the brackets might work sometimes, the function is designed to only be true when the action was actually blocked or parried. Just calling the values like you have in there might make the block popup come up on a miss or evade as well.

edit:

I just tested myself and it appears to work with those functions. Just make sure to turn the 'hide popup' plugin parameter off for both the block plugin and the parry chance plugin, or it will show nothing.

Also, I didn't look into compatibility with this too much, but it seems to work when SRDs plugin loads after mine, I'm not sure if it works in a different order.

Hello, huge fan of your scripts! I am encountering an interesting bug, I don't see it called to attention here so I figured I'd throw it out there so you know. Or maybe you do know, in which case feel free to berate me harshly for being ignorant!

Anyroad, whenever I set a dual wielding character to use 2 different classes of weapon, and a skill that is set to use only one of those, it forces the action sequence to use the correct weapon type. AKA sword for sword skills, etc. But after all normal attacks no longer attack with each weapon but instead attack with the weapon used for that skill 2x. I'm currently unsure if it's only graphically or it's actually forcing the same hand to be used twice. I've tried a variety of things to fix it, and still playing around to get more info. Perhaps you might have insight into this error.

Thanks for hearing me out and hope you've had a wonderful holiday and new years!

This is the first I've heard of that problem, but given how much of a pain it was to implement that feature, it wouldn't surprise me at all to learn there's still a bug or two with it.

I'm at work for the next several hours, but when I get home I'll be able to take a closer look. If you could verify if the normal attacks are actually using the stats of the locked weapon, by slapping wildly unrealistic ATK values on them, that'll save me a few minutes in tracking down the issue though. If not, no big deal, I'll have a look when I can.

Ah very sorry you were disturbed at work! But I have tested it, and it does seem to only be a graphical glitch. I used a Sword and Spear, initial attack does both. Then after a sword restricted only skill it will swing with the sword twice but the damage is that of the different weapons  (Tested using your suggestion). This happens regardless of the hand any item is in.

(+2)

Greetings. I have identified the problem, and released version 2.66 of the dual wield plugin with the implemented fix. The updated version is available for download on the project page now.

Sorry for the inconvenience, and thanks for reporting this bug so it could be squashed. Never feel like you're bothering me (even when I say I'm at work), when reporting even the simplest of glitches like this one.

-Ramza

(+1)

So this one may be a stretch, but I'm hoping it'll make sense to you and you'll have insight on how to resolve it.  I have recently incorporated SumRndmDde's plugin to be able to retry a battle after defeat, with the Retry Upgrade plugin to provide an option of making adjustments to the party's equipment before doing so.  

However, upon hitting the scene prompt for the equipment menu from this approach, I'm hitting a crash that seems to be citing an issue from DualWield.  I've attached a screenshot of what I'm getting:

As far as I'm aware, the Retry Upgrade plugin is making a very basic call here--it's just hitting a SceneManager.push(Scene_Equip) when that option is being presented, and rolls back to a snapshot of the party prior to beginning the encounter.  

The crash occurs when selecting a character whose equipment you'd like to change; in this particular screenshot I was selecting a character who doesn't dual wield and just has a main hand + shield equipped.

(+1)

This looks like the same issue Miah1377 reported after updating from an older version.

That function being referenced as the cause of the crash is trying to read a property that is assumed to be present on all weapons as of v2.62. I just released a sort of patch that stops it from causing the crash error, but the cause of the problem is that it appears that you are testing using a save file that was made prior to upgrading the plugin to version 2.62. The way the database for items is loaded is weird, and because this plugin wasn't reading notetags for locked wtypes prior to v2.62, the property that it saves onto weapons isn't present on your items database for the save file. The plugin (prior to 2.65) assumed that the property is always present, so it goes right to reading from it, which causes the crash error you posted when it finds the property as undefined.

As I said, v2.65, which was just uploaded a few hours ago will stop the crash (or it should anyway), but the actual fix is to start a new save-game file from which to test further.

(+2)

Interesting!  Well, this seems to have resolved the issue collectively between fresh starts and otherwise.  Cheers!

Heya Ramza I haven't updated your plugin in a couple months and just did so. Since I have been getting a crash when I change classes then go into the equip window. I also use your optimize on job change script so when I change the class it changes my weapons so I am not sure if this has anything to do with the crash.

Also the crash happens when I have weapons that can be equipped when it optimizes and when I have none that can be equipped. I'll post a pic of the crash and will keep looking into it but I thought I would run it by you and see if you had any thoughts.

I updated the Dual Wield and X DW Menu Extension plugins only.  The crash also only seems to happen to classes that dual wield. If I turn off your optimize on job change and menu extension plugins and it still crashes, but turning off dual wield fixes the issue. I didn't change any parameters after updating. And finally this didn't happen with version 2.57 of dual wield but does with the latest version.

Ok bud, hope that info helps I'll let you know if I come across anything else.


(+1)

Greetings.

Sorry for the problem here, but the error code you posted is just what I needed to track this down. The problem here is that I believe you are using an old save to test your project, before you installed the new version of this plugin. That function causing the error is checking an array that should be present on all weapons as of the 2.62 update - specifically, even weapons that do not prevent the use of other wtypes will still have this value, it's simply blank, so it doesn't cause this error.

The simplest way to prevent this error is to start a new save-game in your project to test. I have just uploaded version 2.65, which will also correct this issue (causing crashes isn't good, even if the reason isn't exactly the plugin's fault).

Hey there Ramza, the update fixed the crash. Huge thanks for your amazing and speedy work. I just wanted to let you know though in case it may help things on your side, I was always starting a new game when it crashed I never tried to load a save.

(+1)

Hmm. That is odd. Perhaps this bug was not related to the save problem at all, and my little patch corrected a different issue - one where if one of the actors was detected as having no weapon in either hand at some point, it would try to pull an undefined value from a weapon that didn't exist, rather than an undefined value on a weapon that was simply missing the required value in the first place.

In either case, I suppose the patch fixed it. Do let me know if you notice any other weird crashes like that one.

Question: The documentation indicates that this will automatically sub-out the a.atk in the formula for the default attack skill when used by a dual-wield actor--but what if you're using Yanfly to replace that skill?  In my case, I give each weapon type it's own version of default attack, so that they can have different contributing ratios for stats.  Should I manually adjust those formulas to account for mhcalc?  Cheers!

I'm not 100% sure, as I don't use that plugin myself, but I believe Weapon Unleash is coded in such a way as that all other plugins think the new skill is the attack skill, so it should properly do atk calculation. 

Keep in mind, though, that dual wielding unleashed weapons does not work correctly. The offhand weapon's unleash skill is ignored, so the mainhand skill is used twice. This is because the Weapon Unleash plugin doesn't include dual wielding support at all.

Just to clarify--is it <Weapon Unleash> that doesn't work, or does <Replace Attack: x> also not register on an off-hand weapon?  If it's the former, no big deal--but if it's the latter, that's a serious bummer as it would stop me from doing things like having daggers key off of attack + agility, etc.

Unfortunately, it's both, as that plugin was never designed with dual wielding in mind. 

The issue stems from the way dual wielding works by default in engine. The weapon unleash plugin only expects one attack, (as in the default implementation, dual wielding is still only one attack), and therefore only uses the weapon unleash (or replace attack) from the first weapon.

My plugin works by making the default attack action strike twice, which causes the weapon unleash or replace attacks from the unleash plugin to happen twice, not take one from each weapon.

This is something that could be fixed in an update, but wasn't on my roadmap until just now, and it involves deep diving into another plugin to make it compatible, so I wouldn't expect it anytime soon.

Bummer!  I'd been pretty jazzed about differentiating weapon attack formulas as one of the perks of weapon unleash (honestly more than actual unleash skills!) since I could diversify the arsenal / make gearing a little more nuanced than just 'Stack as much atk as possible!'--so I presently have some weapons that use different combinations / ratios of attack, agility, defense, etc. for their default attack replacements.  I'd certainly appreciate any endeavor to back-port a support hook for the plugin, but understand if it isn't a priority.  Thanks for your time and attention just the same and kudos again for some really fantastic plugins!

One quick aside as a possible stop-gap, at least--even if I end up having to give up on the different formula for now.  Might there be some way to partially restrict which kinds of offhand equips could be made based on the main hand?  

Whether that's going 'pair daggers together' or fist weapons or whatnot, but also if there's something like a hand crossbow it's weird to go hand crossbow + melee weapon and have the character stand back and stab from the back line after taking a primary ranged shot.

One of the things I was using there replacement attacks for was for action sequencing + animations in general, so that I could ensure that if someone was using a spear they'd thrust, etc.; I'm likely overcomplicating this though!

I don't think locking certain weapontypes from being used together while dual wielding is currently possible, although you might be able to rig something up with Yanfly's equip requirements plugin to prevent certain weapons from being equipped entirely if another weapontype is already equipped.

That is actually a good suggestion though, so I'll see what I can do about adding support for that into the plugin.

On another note, you can use if conditions in action sequences to do different things when different weapons are equipped on the same skill. I personally have my attack sequence check the actor's weapon motion type to see if he's using a ranged weapon to decide if he runs into melee range, or steps forward for a ranged attack. The <Target Action> section of your action sequence on your attack skills will be repeated twice, once for each weapon, so an if condition that checks what motion is being used in that section will update when the weapons are swapped. You can use this to have  a sequence where if the actor was using a crossbow in his main hand, and a sword in his offhand, the actor would shoot from ranged and then run in for his second melee attack, and even the reverse, although personally I think it looks better to swing in melee and then point blank shoot a crossbow into melee as well, but what do I know? :)

Greetings.

I have posted an update to this plugin to allow specific weapons to forbid the use of other weapon types via notetags. This will allow you to force users to dual wield only daggers, or prevent using a ranged weapon together with a melee weapon.

Thanks for the suggestion!

Hello Ramza, I've been playing around with this plugin now for last few days and I've noticed that the longer a Action Sequence is, the more delay before the attack will go off.

I can't be 100% if it isn't some other plugin also clashing, but simply turning yours off, will make even a very long Action Sequence go back to no delay, even if the character does not have dual wield, if your plug is on will cause this delay. 

Have you noticed or seen this at all, is there anything that can help with this, or is this just simply the nature of it, with how much it needs to do?

At which point are you noticing delay? For dual wield actors, and only when using a dual wield skill (one tagged as dual wield) this plugin does copy sections of the target action and replays them, but only if you've got it set up to do that. If you're not using it in that way, it shouldn't cause any delay to the actual action sequence, and even in the above example, it shouldn't cause any noticeable effect.

Between when you select the skill and then it happening, which I am talking about when an Action Sequence, gets to like a point where it's around 100 lines or more, you start seeing like 1,2,3 seconds of delay past that kind of point. Even if the skill isn't dual wield, but you plugin is active it will cause this, when yours is off it has no delay even at that amount of lines, you could probably see for yourself if you copy and past just a normal attack sequence, a bunch in an action sequence and can find out if you have it also.

it isn't exactly something that causes it to become usable, just need to try more optimize them better if they are one that gets to be so long, just thought id see what you think, since base Action Sequence doesn't seem to have this happen to it.

I'll take a look and see what I can find.

Good news Jeremy.90!

I have located the cause of the delay, and fixed it in the latest release (v2.61). It was caused by accidentally calling a setup function once per line of an action sequence, rather than only once per skill. The function call was inside a loop that was going line by line in the skills notebox, so it was shifting the setup function into the Setup Action of all skills once per line in the note box, rather than the intended once per skill. The added delay would be almost impossible to notice on shorter action sequences, but with each line it'd increase a bit more, until you get to the point you noticed at 100+ lines.

It is corrected now, so feel free to re-download the plugin and see for yourself.

-Ramza

Thank you for this, looks good from the quick testing I did for it.

I have a new question to ask of you, do you think it would be possible to add in a way to check if the player has access to being able to use shields or not, since if i'm not mistaken your plugin just allows,  all to use shields with or without that right?

I have made a work around for this, but thought i'd ask you see if you could add it into your own plugin to help clean things up.

Greetings.

I have just checked, and this is not the case. If an actor is incapable of wielding a shield, it will not show up in his list of available items for the offhand slot. This is also true if you have multiple armor types for shields that are all equipslot type 1 (shield). The actor only has access to shields for which he has the traits to equip:


This image is taken straight from the demo project, where the default shield is a 'large shield' and the small shield is a 'small shield'. Both items are shields, but they are different armor types, and Harold has been changed to only be able to use small shields. As you can see, the default shield doesn't appear in his list of offhand items.

Likewise if you remove his ability to equip small shields as well, no shield shows in this list at all, even when both the default shield that Therese wears, and the small shield from the npc shop are both in the inventory.

Hey Ramza, I just recently bought this plugin but whenever an enemy performs an action I get hit with this error:

I don't have a clue how this works, though it seems to work fine in your demo project.  Besides one plugin for move routes I'm only using Yanfly plugins, and I've tried positioning yours in   different places to see if it was a loading issue. I also haven't made any tweaks to the base settings, I just applied dual wielding to a party member and tested it.

Thanks.


Hello there.

It would appear that this is an uncaught bug caused in v2.55, when I added some checks to lock main or offhand weapons on actors who were using skills that required a specific weapon type. It looks like after this update I was also checking for locked weapon types on enemies, who don't use weapons, and therefore throw this error.

I have uploaded a fix, and apologize for the inconvenience. The reason why it worked in my demo project was because the uploaded demo project is using an older version of the plugin. Redownloading the plugin file from the download page will show it updated to v2.58 with this fix included.


Thanks for reporting this issue.

Wow that was fast, thanks a tonne!

Hi Ramza, I am really liking your plugin! Thanks.

I have a question about an issue I have. When using your plugin, it appears that the only choice we have two single attacks, or turn off bare hand for single attack when Mainhand only is equipped.

My issue is that when using a Bow with arrows via Uconnected42's ammunition system, there is no way to combine the values of mainhand and offhand into a single strike. Like what an arrow would do.

I have the bows equipped to Mainhand and the arrows (also a weapon) on the offhand. This setup works perfectly for UCONN_AmmunitionSystem because I have to be able to equip the ammo.

Is it possible to add an option via notetag to combine main an offhand into a single strike on certain weapons?

Thanks for your attention!:)

I'm not familiar with that plugin. However, the 'disable state' option in my plugin 's parameters can be used for exactly the scenario you describe. Try putting it as a passive on the arrow weapons and see how it works out.

I'm honestly not sure how it will work out with the arrows being weapons, though, so you might need a more creative workaround. Technically, you could make them shields and they'd still fit in the offhand, and their base parameters would be added to the single attack of the main hand weapon in that case. They'd need to be etypeId 2 specifically for that to work without modifying my plugin, though. You'd probably need some special equipment requirements to prevent a player from equipping arrows as a shield without a bow, or something as well.

Thanks for the reply, completely unblocked my mind AND it worked perfectly!

What I did was this. Set your plugin disable state to stateID[##], then using Yanfly's AutoPassiveStates, applied a passive "Archer" (also stateID[##]  to the bow weapons. Worked like a charm. Now my Rogue type classes can use both dual hand daggers and single hand bows with arrows in the offhand, and both perform perfectly.

Uconns ammunition plugin needed a little tweaking because it's not technically supposed to allow using a weapon as ammo, it wants to use items, or weapons as the ammo themselves (like throwing stars, and knives). I tried making the arrows armor, and while Uconns plugin says it will allow that, it wasn't calculating the damage multiplier correctly, probably a bug. Who knows'?

In any case, THANK YOU! for the quick reply. It's awesome to have such a helpful community like RM's. Your plugin in particular is key in my project for making things "Feel" authentic to the source material.

Viewing most recent comments 1 to 40 of 43 · Next page · Last page