news.lua 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. local news = {
  2. '7/6/23',
  3. 'Gloves can finally be enchanted!',
  4. '',
  5. '7/5/23',
  6. 'Updated Baked clay, adds some new terracotta nodes.',
  7. 'Updated mobs_monsters, which adds a couple new monsters.',
  8. '',
  9. '7/1/23',
  10. 'Refreshed the goat model, added a pig.',
  11. '',
  12. '11/26/21',
  13. 'Added in new furniture from Traitor.',
  14. '',
  15. '9/26/21',
  16. 'Fixed locked jewelry stations.',
  17. '',
  18. '9/21/21',
  19. 'Updated a bunch of deprecated code.',
  20. '',
  21. '08/16/21',
  22. 'Added the Beautiful Flowers mod.',
  23. '',
  24. '1/15/21',
  25. 'Updated curtain toggling function. You can now click on any curtain to toggle all connected curtains.',
  26. 'Added some new woodflooring.',
  27. '',
  28. '12/11/20',
  29. 'Added the sickles mod, which improves the performace of the titanium scythe, and added a Rose Thennium scythe.',
  30. '',
  31. '12/5/20',
  32. 'Fixed the tunneltest tunnelers so they work on hard stone.',
  33. '',
  34. '11/29/20',
  35. 'Tunneltest tunnelers can be repaired with an anvil.',
  36. '',
  37. '11/27/20',
  38. 'Tweaked the crocodile attack.',
  39. '',
  40. '11/24/20',
  41. 'Added the tunneltest mod.',
  42. '',
  43. '11/19/20',
  44. 'Added a new crocodile model.',
  45. '',
  46. '11/16/20',
  47. 'Using teleport commands while sitting should no longer cause issues.',
  48. '',
  49. '11/13/20',
  50. 'Meseboxes are now compatible with hoppers.',
  51. '',
  52. '11/5/20',
  53. 'Added the mesebox mod.',
  54. 'Kitchen cabinets now have a face on the back wall.',
  55. 'Added double gate.',
  56. '',
  57. '10/31/20',
  58. 'AFK timeout increased to 15 minutes.',
  59. 'AFK players are no longer counted when trying to skip the night.',
  60. 'You can now show rules to player without interact, use /rules <playername>',
  61. '',
  62. '10/28/20',
  63. 'Removed the side space check for the flour mill, should not have been there.',
  64. '',
  65. '10/24/20',
  66. 'Added some more stone arcs.',
  67. '',
  68. '10/20/20',
  69. 'Artificial bee hives now make normal honey that can be used in recipes.',
  70. '',
  71. '10/17/20',
  72. 'Added a second bow, tiered arrows, and exploding crossbow bolts.',
  73. 'Updated Scorpion bosses.',
  74. '',
  75. '10/13/20',
  76. 'Added stone carving station, and stone pkarcs.',
  77. '',
  78. '10/12/20',
  79. 'Added an intruder alarm, thanks to SiliconPenguin and Daniel1 for help with code.',
  80. '',
  81. '10/9/20',
  82. 'Armor in space should work properly now!!!',
  83. 'Added ring and amulet recipes to show how to make the items with perks.',
  84. 'All armors are displayed in spawn.',
  85. 'Added Nether Basalt Brick, and stairs.',
  86. '',
  87. '10/7/20',
  88. 'Lifeforce potions can be put in vessel shevles.',
  89. 'Amulets can be crafted in the jewelry workshop.',
  90. '',
  91. '10/5/20',
  92. 'Updated the Armor stats screen. It now shows actual and applied values of armor.',
  93. 'Golden and Titanium rings can be crafted at the jewelry workshop.',
  94. '',
  95. '10/3/20',
  96. 'Updated signs_lib, text is more easily readable now.',
  97. '',
  98. '9/28/20',
  99. 'Added a pottery wheel, and a few recipes.',
  100. '',
  101. '9/25/20',
  102. 'Orange trees should grow properly now.',
  103. 'Updated papyrus growth, so it should grow more realiably in dirt.',
  104. '',
  105. '9/24/20',
  106. 'Added signs_lib mod, a few signs will now actually show text.',
  107. 'Added enchanted Rose Thennium armors.',
  108. '',
  109. '9/22/20',
  110. 'Finally got quartz enchanted diamond armor added.',
  111. '',
  112. '9/12/20',
  113. 'Added the more_coral mod.',
  114. 'Put the awards mod back on the server.',
  115. 'Removed the cartographer mod, doesn\'t appear suitable for a server.',
  116. '',
  117. '9/11/20',
  118. 'Added a few more food items.',
  119. '',
  120. '9/10/20',
  121. 'Dogs can finally be tamed.',
  122. '',
  123. '9/6/20',
  124. 'Added numbers to the letter machine.',
  125. '',
  126. '9/5/20',
  127. 'Added some abmbient sounds for different biomes.',
  128. '',
  129. '',
  130. 'For more information and to read older news visit www.nathansalapat.com/server/epic-server'}
  131. for i = 1, #news do
  132. news[i] = minetest.formspec_escape(news[i])
  133. end
  134. news.txt = table.concat(news, ',')
  135. spawn_news_formspec =
  136. 'size[11,10]'..
  137. 'no_prepend[]'..
  138. 'bgcolor[#080808BB;true]'..
  139. 'background[0,-1;12,11;spawn_poster.png]'..
  140. 'hypertext[0,.2;12,1;;<center><style color=black size=40>~~News~~</style></center>]'..
  141. 'textlist[2,1.5;11,6;msg;'..news.txt..';0;true]'