Epic/mods/spawn/news.lua

189 lines
5.4 KiB
Lua

local news = {
'11/26/21',
'Added in new furniture from Traitor.',
'',
'9/26/21',
'Fixed locked jewelry stations.',
'',
'9/21/21',
'Updated a bunch of deprecated code.',
'',
'08/16/21',
'Added the Beautiful Flowers mod.',
'',
'1/15/21',
'Updated curtain toggling function. You can now click on any curtain to toggle all connected curtains.',
'Added some new woodflooring.',
'',
'12/11/20',
'Added the sickles mod, which improves the performace of the titanium scythe, and added a Rose Thennium scythe.',
'',
'12/5/20',
'Fixed the tunneltest tunnelers so they work on hard stone.',
'',
'11/29/20',
'Tunneltest tunnelers can be repaired with an anvil.',
'',
'11/27/20',
'Tweaked the crocodile attack.',
'',
'11/24/20',
'Added the tunneltest mod.',
'',
'11/19/20',
'Added a new crocodile model.',
'',
'11/16/20',
'Using teleport commands while sitting should no longer cause issues.',
'',
'11/13/20',
'Meseboxes are now compatible with hoppers.',
'',
'11/5/20',
'Added the mesebox mod.',
'Kitchen cabinets now have a face on the back wall.',
'Added double gate.',
'',
'10/31/20',
'AFK timeout increased to 15 minutes.',
'AFK players are no longer counted when trying to skip the night.',
'You can now show rules to player without interact, use /rules <playername>',
'',
'10/28/20',
'Removed the side space check for the flour mill, should not have been there.',
'',
'10/24/20',
'Added some more stone arcs.',
'',
'10/20/20',
'Artificial bee hives now make normal honey that can be used in recipes.',
'',
'10/17/20',
'Added a second bow, tiered arrows, and exploding crossbow bolts.',
'Updated Scorpion bosses.',
'',
'10/13/20',
'Added stone carving station, and stone pkarcs.',
'',
'10/12/20',
'Added an intruder alarm, thanks to SiliconPenguin and Daniel1 for help with code.',
'',
'10/9/20',
'Armor in space should work properly now!!!',
'Added ring and amulet recipes to show how to make the items with perks.',
'All armors are displayed in spawn.',
'Added Nether Basalt Brick, and stairs.',
'',
'10/7/20',
'Lifeforce potions can be put in vessel shevles.',
'Amulets can be crafted in the jewelry workshop.',
'',
'10/5/20',
'Updated the Armor stats screen. It now shows actual and applied values of armor.',
'Golden and Titanium rings can be crafted at the jewelry workshop.',
'',
'10/3/20',
'Updated signs_lib, text is more easily readable now.',
'',
'9/28/20',
'Added a pottery wheel, and a few recipes.',
'',
'9/25/20',
'Orange trees should grow properly now.',
'Updated papyrus growth, so it should grow more realiably in dirt.',
'',
'9/24/20',
'Added signs_lib mod, a few signs will now actually show text.',
'Added enchanted Rose Thennium armors.',
'',
'9/22/20',
'Finally got quartz enchanted diamond armor added.',
'',
'9/12/20',
'Added the more_coral mod.',
'Put the awards mod back on the server.',
'Removed the cartographer mod, doesn\'t appear suitable for a server.',
'',
'9/11/20',
'Added a few more food items.',
'',
'9/10/20',
'Dogs can finally be tamed.',
'',
'9/6/20',
'Added numbers to the letter machine.',
'',
'9/5/20',
'Added some abmbient sounds for different biomes.',
'',
'8/28/20',
'Added letters mod, you can now make names on buildings.',
'',
'8/26/20',
'Re-enabled the cartographer mod.',
'',
'8/24/20',
'Temporarily removed the cartographer mod.',
'',
'8/23/20',
'Cleaned up entries for blocks in Help>Blocks.',
'',
'8/22/20',
'Removed Awards mod, in an effort to cut down on lag.',
'',
'8/21/20',
'Added super furnaces, they cook twice as fast as a normal furnace.',
'Watch dev-blog 31 for a video on how to set one up.',
'',
'8/18/20',
'Added locked version to the new stations.',
'',
'8/16/20',
'Fabric dying is now listed in unified inventory.',
'',
'8/15/20',
'Migrated server to an SSD, hopefully this bring some performance improvements.',
'New texture for the Barley and Rye seeds.',
'',
'8/14/20',
'Added corn to the threshing machine and flour mill.',
'New texture on the rice seed.',
'',
'8/13/20',
'Added recipe for white fabric in unified inventory.',
'New texure for rice, and rice can be threshed into rice grains.',
'Fixed a wierd bug with sprinting crashing the server.',
'',
'8/9/20',
'Fixed a crash from the cartographer mod.',
'',
'8/8/20',
'Added Cartographer mod.',
'',
'8/5/20',
'Added a threshing machine to collect seeds from grains.',
'',
'8/4/20',
'Added Unified Inventory entries for some more items made in stations.',
'',
'8/3/20',
'Added Butter Churn, makes four butter from one bucket of milk.',
'Revised the recipes for bread.',
'Fixed a few small bugs in the stations that I hadn\'t noticed.',
'',
'',
'For more information and to read older news visit www.nathansalapat.com/server/epic-server'}
for i = 1, #news do
news[i] = minetest.formspec_escape(news[i])
end
news.txt = table.concat(news, ',')
spawn_news_formspec =
'size[11,10]'..
'no_prepend[]'..
'bgcolor[#080808BB;true]'..
'background[0,-1;12,11;spawn_poster.png]'..
'hypertext[0,.2;12,1;;<center><style color=black size=40>~~News~~</style></center>]'..
'textlist[2,1.5;11,6;msg;'..news.txt..';0;true]'