Chaos Project

RPG Maker => General Discussion => Troubleshooting / Help => Topic started by: Shek on November 22, 2013, 01:00:14 am

Title: Resolved: Item Drop Error: Help!
Post by: Shek on November 22, 2013, 01:00:14 am
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?
Title: Re: Item Drop Error: Help!
Post by: KK20 on November 22, 2013, 01:05:49 am
http://forum.chaos-project.com/index.php/topic,6164.msg178295.html#msg178295
and winkio's response below it.
Title: Re: Item Drop Error: Help!
Post by: Shek on November 22, 2013, 04:30:40 am
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!