Welcome text

void Start ()
{

    Debug.Log("Welcome to number Wizard, also Jonte e okej");
    Debug.Log("Please choose a number between " + minimumGuess + " and " + maximumGuess + ", i will try and guess it.");
    Debug.Log("Tell me if your number is hight or lower then my guess by using the 'up'- and 'down'-arrows");
    Debug.Log("Press 'Enter' if I have guessed correctly");
    Debug.Log("");
    Debug.Log("My first gues is " + (minimumGuess + maximumGuess) / 2);
    maximumGuess = maximumGuess + 1;
}
1 Like

Privacy & Terms