04-30-2010, 03:38 PM
search for "def gain_item(*args)" in the vx compatiblity module and update it to the following to correct the error:
Code:
#--------------------------------------------------------------------------
# Gain Item
#--------------------------------------------------------------------------
alias gain_item_vx_compatibility gain_item
def gain_item(*args)
item = *args[0]
case item
when RPG::Item
return gain_item_vx_compatibility(item.id, *args[1])
when RPG::Weapon
return gain_weapon(item.id, *args[1])
when RPG::Armor
return gain_armor(item.id, *args[1])
end
return gain_item_vx_compatibility(*args)
end