[RESOLVED] Multi-Slot and Blacksmith 2.0 Malfunction

Started by SereinTear, August 03, 2015, 06:28:42 pm

Previous topic - Next topic

SereinTear

August 03, 2015, 06:28:42 pm Last Edit: August 03, 2015, 08:10:43 pm by SereinTear
I'm using RMXP first off. ^_^

After isolating which of the umpteen-thousand scripts was causing the issue, I figured out GUILLAUME777's Multi-Slot and ForeverZer0's Blacksmith Shop 2.0 don't play well together. Everything works perfectly....

Spoiler: ShowHide


... until you try to forge one of the armors that go into an extra slot...

Spoiler: ShowHide


... then this happens:

Spoiler: ShowHide


*shrug* I'm not sure if it's a fixable problem or not. Any help in this is greatly appreciated. Here's hoping I don't have to cut out one of those scripts. There are other multi-slot scripts and blacksmith scripts, but these two have the features I want. And are really easy to configure for a non-scripter.

And here's a quickie demo/game thingy with just the problem scripts.

http://www.mediafire.com/download/hjp8915lrpkc7i6/MessedUP.zip

Thanks again to anyone who gives this a shot! Or just a thanks for taking the time to read this. lol

KK20

Can you confirm that this does the trick? I didn't test it all that much.

When you run your game and get that error, go into your script editor and it will put the cursor around here:

      else
        armors = [chr.armor1_id, chr.armor2_id, chr.armor3_id, chr.armor4_id]
        eqp = $data_armors[armors[@item.kind]]
      end

Replace that with

      else
        eqp = $data_armors[chr.armor_ids[@item.kind]]
      end


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

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

Join the CP Discord Server!

SereinTear

Yay! It works! I'm glad it was an easy fix. Thank you so much!