I am wanting to make my game have info on what its next update will include if you update the game so the player can see what exactly they're getting themselves into by updating. My question is, how would I pull this off?
Printable View
I am wanting to make my game have info on what its next update will include if you update the game so the player can see what exactly they're getting themselves into by updating. My question is, how would I pull this off?
You can include the patch notes in the same file as the version number, and you can just get the first line as the version number and the rest of the lines as the patch notes. ;)
That's partly what I wanted, but I wanted it to only show changes from the version the user has to the next version, rather than the entire list of changes from version 1.0 up until the newest version.
Hm, then you can make text files for 1-2.txt, 2-3.txt, etc. and download the correct one. Will that work for you?
Is there any way to grab a specific line of text without using the text blitter object?
Yes...
Mid$( >Enter string here<, 0, Find(>Enter string here<, NewLine$, 0))