I've been thinking and put up some pictures to show what I mean.
I removed a few bytes before the script section so I could look at it easier (only for the pics).
The blue spot marks the number of scripts byte.
Pic 1: working map, no extra scripts.
1. These are the scenery scripts on the map, two for fire scenery.
(they look like 64 bytes each to me, but I may be misunderstanding)
2.This space, I think, is reserved for 16 scripts (or 14 since there are already two on the map).
At least when more scripts are added to the map they get added there (2 lines for every script), replacing whatever garbage is there now, until it reaches 16. It can change a few values, but it never removes those lines once they are put in there. It doesn't matter that the scripts are only temporarily on the map.
Below all the garbage, the critter scripts section starts.
Pic 2: Bugged map.
1. Two scripts, most likely the scenery ones that are on the map to begin with.
2. 16 scripts in a block.
3. When the first block of 16 scripts get full and there are more scripts to add, they get added like this.
But normally they get put AFTER the first block of 16 (from what I've seen). Here I don't know what's going on, and I think it's supposed to be 16, which is not the case here.
On a map with 18 scripts total, and not bugged, it kept the the 16 first scripts (like fig.2 but in the place where fig.1 is) and then added 16 more looking like in fig.3 after the first block. Don't know why it adds 16 more, should have been enough with two. Maye the game likes to be prepared? That extra block of scripts only exist on a save where the player are on a map with the script items. When the player leaves that map, taking the scripts with him, that extra block of scripts gets removed.
So I'm thinking what is causing the crash is that the extra script block gets placed in the wrong place.
It tries to delete that script block but fails cause it's not allowed to (that space is reserved for scripts, can be edited but not deleted). Even though it fails to remove the scripts it still changes the value of the script byte, so that the next time the map is loaded it's looking for only one script block when in fact there are two, and therefore crashes.
I tried to delete the whole section in fig.3 and the two last scripts from fig.2, that made the map playable again.
Again, this is only tested with the first map and I have not looked how maps with more scripts to begin with looks like.
Edit: Changed some stuff that was totally wrong.