- Joined
- Oct 18, 2016
- Messages
- 3
- Reaction score
- 0
- First Language
- English
- Primarily Uses
Hi there. I'm working on a game and installed the Yanfly Battle Engine along with some other scripts. However, I now get a 'Script 'Window_Selectable' line 49: ZeroDivisionError occured.
divided by 0' error. I traced it and the line says
def item_width
(width - standard_padding * 2 + spacing) / col_max - spacing
end
, with col_max coming up in the Yanfly Battle Engine twice under
#--------------------------------------------------------------------------
# overwrite method: col_max
#--------------------------------------------------------------------------
def col_max; return item_max; end
and
#--------------------------------------------------------------------------
# overwrite method: col_max
#--------------------------------------------------------------------------
def col_max; return $game_party.max_battle_members; end
. I've read quite a bit of threads with similar problems, but none of them actually describe a solution, and to be honest I'm very new and bad with code so I'm hesitant to mess with anything on my own. Does anyone know what the fix is for this bug?
divided by 0' error. I traced it and the line says
def item_width
(width - standard_padding * 2 + spacing) / col_max - spacing
end
, with col_max coming up in the Yanfly Battle Engine twice under
#--------------------------------------------------------------------------
# overwrite method: col_max
#--------------------------------------------------------------------------
def col_max; return item_max; end
and
#--------------------------------------------------------------------------
# overwrite method: col_max
#--------------------------------------------------------------------------
def col_max; return $game_party.max_battle_members; end
. I've read quite a bit of threads with similar problems, but none of them actually describe a solution, and to be honest I'm very new and bad with code so I'm hesitant to mess with anything on my own. Does anyone know what the fix is for this bug?

