- Joined
- Jan 9, 2016
- Messages
- 23
- Reaction score
- 1
- First Language
- English
Currently I have it so that when something happens say a switch is turned on or something like that I call a common event:
$gameTemp.reserveCommonEvent(eventId);
But if I try and do that again it wont get called again. I have to then try a third time to call it and then it gets called. So:
first time: $gameTemp.reserveCommonEvent(eventId); - common event is called.
second time: $gameTemp.reserveCommonEvent(eventId); - common event is not called
third time: $gameTemp.reserveCommonEvent(eventId); - common event is called.
Is this not the correct way to call common events on the fly?
$gameTemp.reserveCommonEvent(eventId);
But if I try and do that again it wont get called again. I have to then try a third time to call it and then it gets called. So:
first time: $gameTemp.reserveCommonEvent(eventId); - common event is called.
second time: $gameTemp.reserveCommonEvent(eventId); - common event is not called
third time: $gameTemp.reserveCommonEvent(eventId); - common event is called.
Is this not the correct way to call common events on the fly?

