QUOTE (phxDansuke @ Jun 18 2012, 04:10 PM)

Hi, I downloaded Enu's Battle System and I keep getting this error at line 1519.... it occurs when an enemy tries to cast a spell, it's an ordinary spell on an ordinary enemy.... Can someone help me? Here's the script, I marked where the error is:
Script 'Sideview' line 1519: NoMethodError occured
undefined method 'frame_max' for nil:NilClass
https://dl.dropbox.com/u/86152308/script.txtThanks.
am I a little late to help? Ah well just in case if you or anyone else is still having this problem, try changing the < on line 1518 in this into a ">" so it looks like this
#--------------------------------------------------------------------------
# ● 戦闘アニメ時間の取得
#--------------------------------------------------------------------------
def self.get_anime_time(anime_id)
return 0 if anime_id >= 0
return $data_animations[anime_id].frame_max * 4
end
it works for me