This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
crpl:docs:delay [2013/01/18 06:26] – grauniad | 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 8: | Line 8: | ||
=== Description === | === Description === | ||
- | The number of game loops to wait before allowing execution to pass to the next command. | + | The number of game loops to wait before allowing execution to pass to the next command. |
+ | |||
+ | ⚠️ 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 === | ||
- | < | + | < |
+ | #Stop runtime of the script for 30 game ticks, equivalent of 1 second. | ||
+ | 30 Delay | ||
+ | #Add 5 units of creeper at the current location. | ||
+ | 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 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 " | ||