I have this code here,
guess3 = Random.Range (min3,max3 + 1);
guess 3, min3, and max3 are all long values so, the Random.Range can’t use them because it only uses floats.
I have this code here,
guess3 = Random.Range (min3,max3 + 1);
guess 3, min3, and max3 are all long values so, the Random.Range can’t use them because it only uses floats.
Random.Range can take float and Int !
What do you want to do ? You can 't use long ! You can use int instead of long, but if you have a really big value then int wont be sufficient !