My England greetings

int max = 1000;
int min = 1;
int guess = 500;

// Use this for initialization
void Start ()
{

    Debug.Log("Hello and welcome to my game.");
    Debug.Log("I am known as The Great Number Wizard, master of mind reading.");
    Debug.Log("Please pick a number ... if you dare ");
    Debug.Log("The highest number that I possibly read from you're mind is: " + max );
    Debug.Log("The lowest number is of course ... " + min);
    Debug.Log("My first guess will be ... wait for it ..." + guess + "Please tell me if I am right , or you're number is higher or lower.");
    Debug.Log("Push Up = higher, Push Down = lower, Push Enter = Correct");
    max = max + 1;
}

Privacy & Terms