123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- local news = {
- '7/6/23',
- 'Gloves can finally be enchanted!',
- '',
- '7/5/23',
- 'Updated Baked clay, adds some new terracotta nodes.',
- 'Updated mobs_monsters, which adds a couple new monsters.',
- '',
- '7/1/23',
- 'Refreshed the goat model, added a pig.',
- '',
- '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.',
- '',
- '',
- '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]'
|