Advertisement
Guest User

ExampleServerData

a guest
Jun 16th, 2021
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.13 KB | None | 0 0
  1. local ServerData = {
  2.     Events = {
  3.         BonusExp = {
  4.             Dates = {
  5.                 Start = "1/1/1970 00:00 UTC",
  6.                 End = "1/7/1970 00:00 UTC",
  7.             },
  8.             Title = "Double XP",
  9.             Description = "All experience is doubled!",
  10.             _metadata = {
  11.                 _active = false
  12.             }
  13.         }
  14.     },
  15.  
  16.     PlayedMinigames = {
  17.  
  18.         Games = {
  19.  
  20.             ["GameId-A"] = {
  21.                 PlayedBy = nil,
  22.                 Length = 0,
  23.                 Score = 0,
  24.  
  25.                 _metadata = {
  26.                     _skill = "nil",
  27.                     _active = false,
  28.                     _date = "1/1/1970 00:00 UTC",
  29.                 }
  30.             },
  31.             ["GameId-B"] = {
  32.                 PlayedBy = nil,
  33.                 Length = 0,
  34.                 Score = 0,
  35.  
  36.                 _metadata = {
  37.                     _skill = "nil",
  38.                     _active = false,
  39.                     _date = "1/1/1970 00:00 UTC",
  40.                 }
  41.             },
  42.             ["GameId-C"] = {
  43.                 PlayedBy = nil,
  44.                 Length = 0,
  45.                 Score = 0,
  46.  
  47.                 _metadata = {
  48.                     _skill = "nil",
  49.                     _active = false,
  50.                     _date = "1/1/1970 00:00 UTC",
  51.                 }
  52.             },
  53.             ["GameId-D"] = {
  54.                 PlayedBy = nil,
  55.                 Length = 0,
  56.                 Score = 0,
  57.  
  58.                 _metadata = {
  59.                     _skill = "nil",
  60.                     _active = false,
  61.                     _date = "1/1/1970 00:00 UTC",
  62.                 }
  63.             },
  64.             ["GameId-E"] = {
  65.                 PlayedBy = nil,
  66.                 Length = 0,
  67.                 Score = 0,
  68.  
  69.                 _metadata = {
  70.                     _skill = "nil",
  71.                     _active = false,
  72.                     _date = "1/1/1970 00:00 UTC",
  73.                 }
  74.             },
  75.             ["GameId-F"] = {
  76.                 PlayedBy = nil,
  77.                 Length = 0,
  78.                 Score = 0,
  79.  
  80.                 _metadata = {
  81.                     _skill = "nil",
  82.                     _active = false,
  83.                     _date = "1/1/1970 00:00 UTC",
  84.                 }
  85.             },
  86.             ["GameId-G"] = {
  87.                 PlayedBy = nil,
  88.                 Length = 0,
  89.                 Score = 0,
  90.  
  91.                 _metadata = {
  92.                     _skill = "nil",
  93.                     _active = false,
  94.                     _date = "1/1/1970 00:00 UTC",
  95.                 }
  96.             },
  97.             ["GameId-H"] = {
  98.                 PlayedBy = nil,
  99.                 Length = 0,
  100.                 Score = 0,
  101.  
  102.                 _metadata = {
  103.                     _skill = "nil",
  104.                     _active = false,
  105.                     _date = "1/1/1970 00:00 UTC",
  106.                 }
  107.             },
  108.             ["GameId-I"] = {
  109.                 PlayedBy = nil,
  110.                 Length = 0,
  111.                 Score = 0,
  112.  
  113.                 _metadata = {
  114.                     _skill = "nil",
  115.                     _active = false,
  116.                     _date = "1/1/1970 00:00 UTC",
  117.                 }
  118.             },
  119.             ["GameId-J"] = {
  120.                 PlayedBy = nil,
  121.                 Length = 0,
  122.                 Score = 0,
  123.  
  124.                 _metadata = {
  125.                     _skill = "nil",
  126.                     _active = false,
  127.                     _date = "1/1/1970 00:00 UTC",
  128.                 }
  129.             },
  130.             ["GameId-K"] = {
  131.                 PlayedBy = nil,
  132.                 Length = 0,
  133.                 Score = 0,
  134.  
  135.                 _metadata = {
  136.                     _skill = "nil",
  137.                     _active = false,
  138.                     _date = "1/1/1970 00:00 UTC",
  139.                 }
  140.             },
  141.             ["GameId-L"] = {
  142.                 PlayedBy = nil,
  143.                 Length = 0,
  144.                 Score = 0,
  145.  
  146.                 _metadata = {
  147.                     _skill = "nil",
  148.                     _active = false,
  149.                     _date = "1/1/1970 00:00 UTC",
  150.                 }
  151.             },
  152.             ["GameId-M"] = {
  153.                 PlayedBy = nil,
  154.                 Length = 0,
  155.                 Score = 0,
  156.  
  157.                 _metadata = {
  158.                     _skill = "nil",
  159.                     _active = false,
  160.                     _date = "1/1/1970 00:00 UTC",
  161.                 }
  162.             },
  163.             ["GameId-N"] = {
  164.                 PlayedBy = nil,
  165.                 Length = 0,
  166.                 Score = 0,
  167.  
  168.                 _metadata = {
  169.                     _skill = "nil",
  170.                     _active = false,
  171.                     _date = "1/1/1970 00:00 UTC",
  172.                 }
  173.             },
  174.            
  175.         },
  176.  
  177.         _metadata = {
  178.             _totalPlayed = math.huge,
  179.             _totalTimePlayed = math.huge,
  180.             _averageTimePlayed = math.huge,
  181.             _highestScore = 0,
  182.         }
  183.     },
  184.  
  185.     FastFlags = {
  186.         OverrideHumanoidOnSpawn = false,
  187.         PlayerConnectShowLoadingInterface = true,
  188.         CustomToolOverride = false,
  189.         CustomExperienceEvents = true,
  190.     }
  191. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement