Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.06 KB | None | 0 0
  1. public static List<int> PlayerSpawned = new List<int>
  2.     {
  3.             1, 10, 25, 50, 100, 250
  4.     };
  5.  
  6.     public static List<int> PlayerDied = new List<int>
  7.     {
  8.         1, 10, 25, 50, 100, 250
  9.     };
  10.  
  11.     public static List<int> InterstitialAdShown = new List<int>
  12.     {
  13.         1,2,3,4,5,6,7,8,9,10,15,20,25,30,35,40,45,50,100
  14.     };
  15.  
  16.     public static List<int> RewardableAdShown = new List<int>
  17.     {
  18.         1,2,3,4,5,10,15,20,35,50,75,100
  19.     };
  20.  
  21.     public static List<int> AdShown = new List<int>
  22.     {
  23.         1,2,3,4,5,10,15,20,35,50,100,200,350,500
  24.     };
  25.  
  26.     public static List<int> TimesStartButtonPress = new List<int>
  27.     {
  28.         1,2,3,4,5,6,7,8,9,10,15,20
  29.     };
  30.  
  31.     public static List<int> GamesWasPlaying = new List<int>
  32.     {
  33.         1,2,3,4,5,6,7,8,9,10,15,20
  34.     };
  35.  
  36.     public static List<int> TimesZombieKilled = new List<int>
  37.     {
  38.         1, 5, 10, 15, 25, 50, 100, 250, 500, 1000, 2000, 5000, 7500,10000, 15000
  39.     };
  40.  
  41.     public static List<int> TimesPlayesrKilled = new List<int>
  42.     {
  43.         1, 5, 10, 15, 25, 50, 100, 250, 500, 1000, 2000, 5000, 7500, 10000
  44.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement