Author Topic: Too many events at once (onActivate)  (Read 2539 times)

I'm working on a prison for the Jailbreak. There are 20 cells, and the doors slide open. Every time I click the button to open the cells, nothing happens, and I get the message "Too many events at once! (onActivate)." Is there any way I can get this fixed?

Could try to make it so half of the doors open first, then a delayed event for the other half. Otherwise, theres like no other way.

Could try to make it so half of the doors open first, then a delayed event for the other half. Otherwise, theres like no other way.
I already set a delay, but I've seen more cells in the jailbreak server and they all open at once.

you can up the limit before you start the server
or stagger the events processing so they aren't all at once

you can up the limit before you start the server
or stagger the events processing so they aren't all at once
^^^

you can up the limit before you start the server
I set it to the max, 999.
or stagger the events processing so they aren't all at once
Code: [Select]
[0] onActivate > Cell_Door > setColliding []
[0] onActivate > Cell_Door > setRendering  []
[0] onActivate > Cell_Door > setRayCasting []

[3000] onActivate > Cell_Door2 > setColliding [x]
[3000] onActivate > Cell_Door2 > setRendering  [x]
[3000] onActivate > Cell_Door2 > setRayCasting [x]
This doesn't work, it still triggers all the events at once.


999 isn't the maximum
Every time i start my server i set everything to its max by filling the fields with '99999999999', they max themselves out, and that's as high as it goes.

Every time i start my server i set everything to its max by filling the fields with '99999999999', they max themselves out, and that's as high as it goes.
I'm pretty sure it's designed so that if you put in a stupidly high number, it goes to a sort of high number, but not max. I'm honestly surprised you tried anything over 999999.

I'm pretty sure it's designed so that if you put in a stupidly high number, it goes to a sort of high number, but not max. I'm honestly surprised you tried anything over 999999.
What is the max number then?

are you sure you did the right one? which option did you set to 999

are you sure you did the right one? which option did you set to 999

theres the problem
you set the 9999 value to the wrong property
its Schedules youre looking for
change Schedules to 9999   

theres the problem
you set the 9999 value to the wrong property
its Schedules youre looking for
change Schedules to 9999   
This worked, but only in single player, it resets to 1000 after i shut down the server.

This worked, but only in single player, it resets to 1000 after i shut down the server.
Try putting the 9999 value in the Schedules limit for LAN games and see if that works
this is just a guess so im not sure what else to do