Resolved: Item Drop Error: Help!

Started by Shek, November 22, 2013, 01:00:14 am

Previous topic - Next topic

Shek

November 22, 2013, 01:00:14 am Last Edit: November 22, 2013, 04:32:00 am by Shek
Sometimes when an item is dropped, you can't pick it up.  To fix this bug, simply go to part 2 of the abs script and change:

event.id = (keys.size == 0 ? 1 : keys.max + 1)

to

event.id = (keys.size == 0 ? 1 : keys.max + 6)    #6 is an arbitrary number, could be 2 theoretically, or 90... 6 seemed to work for me.


Thanks KK!

OP:
About 20% of the time, when an item drops from an enemy, it can't be picked up.

Is anyone else experiencing this? And is it fixable?

KK20


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!

Shek

KK you're awesome! I set the constant value to +6 instead of +1 (6 was an arbitrary choice... I just wanted to give myself a lot of buffer) and it works now!