This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
crpl:docs:delay [2015/04/07 06:04] – Expanded on description and added an example as suggested. Telanir | crpl:docs:delay [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ~~DISCUSSION~~ | + | |
<- [[crpl: | <- [[crpl: | ||
===== Delay ===== | ===== Delay ===== | ||
Line 9: | Line 9: | ||
=== Description === | === Description === | ||
The number of game loops to wait before allowing execution to pass to the next command. Timers used via SetTimer(0-3) continue to run and expire even while the script is delayed. | The number of game loops to wait before allowing execution to pass to the next command. Timers used via SetTimer(0-3) continue to run and expire even while the script is delayed. | ||
+ | |||
+ | ⚠️ Delay is subject to multiple bugs related to script execution. These bugs mostly surface when the game is saved and then loaded at a point where Delay is currently delaying a script. Depending on how it's used it can cause the game to crash or cause other issues. If possible it is recommended to not use Delay and instead rely on timers, such as [[GetTimer0]], | ||
+ | |||
=== Examples === | === Examples === | ||
< | < | ||
Line 16: | Line 19: | ||
CurrentCoords 5 AddCreeper | CurrentCoords 5 AddCreeper | ||
</ | </ | ||
+ | |||
+ | === Bugs === | ||
+ | == Calling Delay in a loop when the script has a defined :Awake function == | ||
+ | < | ||
+ | do | ||
+ | I 2000 mod eq0 if | ||
+ | 1 delay | ||
+ | endif | ||
+ | loop | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | The combination of a Do/Loop with a nested Delay and an Awake function... that turns out to be poison. | ||
+ | |||
+ | == Calling Delay from within a function == | ||
+ | < | ||
+ | " | ||
+ | @HandleDeath | ||
+ | " | ||
+ | <-Lives 1 sub ->Lives | ||
+ | <-Lives Trace | ||
+ | |||
+ | : | ||
+ | 10 10 100 AddCreeper | ||
+ | 10 Delay | ||
+ | 10 10 100 AddCreeper | ||
+ | 10 Delay | ||
+ | 10 10 100 AddCreeper | ||
+ | 10 Delay | ||
+ | </ | ||
+ | |||
+ | In this scenario, there are delays defined in the HandleDeath function. If the game is saved and then loaded at the point where one of those delays is in effect (due to the function having been called earlier), the game will continue where it left off - at the `@HandleDeath` function call - but it will pick up **after it**. So the rest of the function will be skipped and the code will immediately continue to the " | ||