player save shape.txt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. nimblz {
  3. portals { -- [portal] = isActive
  4. red = true
  5. orange = false
  6. yellow = true
  7. ...
  8. }
  9. inventory = { -- [itemid] = isObtained
  10. dimmadome = true
  11. baseballcap = true
  12. bighead = false
  13. ...
  14. gun = true
  15. whisk = false
  16. ...
  17. highJump = true
  18. waterWalk = true
  19. fly = false
  20. ...
  21. }
  22. equipped = {
  23. hat = { -- array of 3 hat ids
  24. }
  25. face = "default" -- id
  26. tool = { -- array of 3 tools to put on bottombar
  27. }
  28. ability = { -- array of active abilities, no limit
  29. }
  30. }
  31. stats = {
  32. playTime = 1337 -- in mins
  33. metersWalked = 9001
  34. coins = 1000
  35. achievements = {
  36. joinGame = true
  37. coins1000 = true
  38. touchLava = true
  39. discoverForestTemple = true
  40. discoverScoob = true
  41. discoverSkyIsland = true
  42. activateAllPortals = false
  43. }
  44. }
  45. productsPurchased = {
  46. becomeGiantProduct = true
  47. rainbowEgProduct = true
  48. }
  49. }
  50. }