RYDIAMIST'S PROFILE

Final Fantasy: Legend of...
A Final Fantasy fangame that faithfully recreates the mechanics of classic Final Fantasies, with a light-hearted feel.

Search

Filter

Final Fantasy Blackmoon Prophecy II

Hey! Long time follower, but I've just finally made an account here. I haven't gotten time to play the new demo yet, but I am reading about the Mode 7 crashes. I have made my own fangame and had some problems with it too. It turns out that it's not disposing things properly, and eventually the memory leak will cause the RGSS Player to crash. Here's the simple fix for that, just insert it below the mode 7 script in the script editor. Credit to Mithran of the RPGMaker forums.

author=Mithran
class Spriteset_Map
alias dispose_tilemap_b4mode7 dispose_tilemap
def dispose_tilemap
@tilemap_mode7.dispose if @tilemap_mode7
@tilemap_classic ? @tilemap_classic.dispose : @tilemap.dispose
end
end

I hope this helps! Unless you've already put that in your fixed version, I haven't checked that.

Also, my own game uses Tankentai as well and I have a pretty firm grasp of it. If you ever need any help with it please don't hesitate to ask!