Hey everyone. I finished adding all the sprites into my game for blizzABS to work. So I'm going through my game and replacing all the battle processing calls currently in place with things more proper for blizzABS. But at what feels like completely random times, I get this error
At first I thought maybe this was being caused by one of the addons I was using. So I took out EVERYTHING other than blizzABS. But I still get the error. The error always occurs in the same places, so I thought maybe it had something to do with ABSEAL. So I tried disabling ABSEAL on all the maps it was occurring on. This changed nothing. So I tried disabling ABSEAL on EVERY map in the game. The error still occurs at the same place.
I've tried going through and giving my cutscene controller events a dummy graphic as well. I really have no idea why these are happening :/
In normal circumstances, I'd just erase every event on the map where it occurs and re event the whole thing. But this isn't an option, because this happens on some maps with quite long cutscenes that I don't have time to remake. The RPG Maker contest ends in just five days. I really don't know how to get around this. And it would be a disaster if I've ended up wasting the past three days on blizzABS if it's going to have a game killing bug I can't get around :/ Please help if you know what's going on.
-edit, it seems that this error is caused every time a parallel process common event is activated. Does anyone know how to fix that? Some very important bits of eventing are done this way and there's no way for me to do what I'm trying to do without either making a script (which I do not have time for) or having these parallel process common events.
-edit again, that doesn't seem to be the only thing causing it :/ I'm trying to narrow down the cause of it. But WTF! We've had blizzABS for how long now? Has anyone ever actually tried to make a serious project with it? lol. I figure this error would have come up before. A LOT of things seem to be triggering this error

-edit, I've figured out a fix for the tirgger error.
In Blizz-ABS Part 2, you change this line
if $game_map.events[event_id].trigger > 4
to
if $game_map.events[event_id] && $game_map.events[event_id].trigger > 4
Though there is another error :/ Sometimes, when I set an event's move route, the script
hangs.No idea why. No error other than "the script is hanging". So I guess I'll have to figure out what the freak is going wrong here too -.- How do I always manage to find ways to break whatever script I'm working with? lol