Player Prefs question...

Hello. The first time an application is run, using PlayerPrefs.SetInt defaults to 0. How can I make it start at another number (such as 5)? Thanks

SetInt is set exactly to what you want it to be.

PlayerPrefs.SetInt("My value", 5);

So the first time an application is run you can do this:

if (!PlayerPrefs.HasKey("My value") 
    PlayerPrefs.SetInt("My value", 5);