Started by lpjz2, May 15, 2012, 02:24:31 pm
Class Game_Enemy < Game_Battler def exp=(n) endend
bat.exp += exp if !bat.cant_get_exp?
bat.exp += exp if !bat.cant_get_exp? && bat.is_a?(Game_Actor)
class Game_Enemy def cant_get_exp? return true endend
Quote from: winkioI do not speak to bricks, either as individuals or in wall form.
Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.
Quote from: winkio on May 15, 2012, 07:07:45 pmChange the line after the error (line 2055) frombat.exp += exp if !bat.cant_get_exp?tobat.exp += exp if !bat.cant_get_exp? && bat.is_a?(Game_Actor)