Okay I did some testing and it's insane. Together with the HiddenChest Engine I can run 37000 events with Zeriabs anti lag system. So I had 7x5 maps with 999 events plus 2 more full and 3 empty maps in the bigmap.
And even beyond 37000 the lag isn't that much but makes playing too annoying for my taste. And it can crash if too many stuff is on the screen so I think keeping it below 35000~37000 might be a good idea.
With the Near Fantastica script it ended at around 5000 events.
I had to comment out the following lines because they throw this error in HiddenChest
(693-705)
Now I only need to make Zeriabs script compatible with my game. There are some nasty errors so far but I will try to fix them now.
And even beyond 37000 the lag isn't that much but makes playing too annoying for my taste. And it can crash if too many stuff is on the screen so I think keeping it below 35000~37000 might be a good idea.
With the Near Fantastica script it ended at around 5000 events.
I had to comment out the following lines because they throw this error in HiddenChest
(693-705)
Code:
# Checks if the event is never to be updated. (For decoration)
for pattern in NEVER_UPDATE_NAME_PATTERNS
if (pattern.is_a?(String) && name.include?(pattern)) ||
!(pattern =~ name).nil?
self.never_update = true
end
end
# Checks if the event is to be always updated.
for pattern in ALWAYS_UPDATE_NAME_PATTERNS
if (pattern.is_a?(String) && name.include?(pattern)) ||
!(pattern =~ name).nil?
self.always_update = true
end
end
Now I only need to make Zeriabs script compatible with my game. There are some nasty errors so far but I will try to fix them now.