MagmarFire
MagmarFire
I have checkpointed achievement code that checks to make sure the player never leaves a particular subset of areas, as shown below: ``` function IsAlwaysInTraverseTownKeyhole() => never(!IsInLocation("TraverseKeyholeFirst") && !IsInLocation("TraverseKeyholeSecond") &&...
It's occasionally beneficial to have utility functions that perform similar but technically different tasks depending on what values are passed into a particular call at once. RATools, however, only allows...
Certain IDEs--i.e., Visual Studio--have a feature where one can collapse blocks of code, such as if statements or user-defined #region tags. This can be useful if files become so large...
The core as it's currently constructed only supports built-in noise samples. This is sufficient for most games that accept only minor bursts of sound, but games that require sustained blowing...
v1.10.0's release stated the following in its patch notes: > Calling repeated or tally with a count of 0 is no longer supported outside of a measured clause of a...
As a developer, I want to be able to match null-terminated strings when using `ascii_string_search` so that I don't accidentally match substrings. For example, if a string at a given...