get_version() - Aural+?
Is there a way to tell whether the player is using Aural+ or regular 108?
See that text at the bottom of the start screen when you load a mod? Notice the difference between versions.
Yes I just checked and get_version() returns the same for each, but where does that text at the bottom of the screen come from then?
Yes I just checked and get_version() returns the same for each, but where does that text at the bottom of the screen come from then?
Hard coded? In The Honour Quest, cypry changed that text. How did he do that?
The hardcoded text is handled as a text sprite (brain 8). What cypry did was a get_sprite_with_this_brain(8,0); to get the text's sprite number. The he gets the coordinates, and kills the sprite. Finally, he used say_xy to create his custom text at the same position.
Thanks for explaining that. It's quite clever.