Read a text file from paste bin.

I need to read a text file that i made on pate bin. I need to do this because i want to be able to check if the game is the latest version and get a list of strings for a random tip to be displayed.

What does paste bin got to do with the text file? Why do you need to create it there? Wouldn’t you define the latest version of your game where you build it? Within Unity?

If you just want to read a file, you can use a StreamReader:

DotNetPerls - StreamReader

You can simple read the first line and let it be the version for example, then all other lines are just read and stored in an array or list.