doc.lua 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. doc.add_category("epic_server",
  2. {
  3. name = ("Server Specific Information"),
  4. description = ("Helpful information about this server"),
  5. build_formspec = doc.entry_builders.text_and_gallery,
  6. })
  7. doc.add_entry("epic_server", "armor", {
  8. name = ("Armor"),
  9. data = { text = ('Armor comes in a wide variety of strengths and materials. Take a look in the upper halls of the Hall of Wisdom for stats on the different styles.\n'..
  10. 'Armor can\'t be crafted in the crafting grid, but will need to be created at either the anvil or the crystal workshop. You can find public anvils and crystal workshops at spawn.\n\n'..
  11. 'In addition to metal or crystals you\'ll also need some sort of fabric/leather. The metal armor can be crafted with burlap or leather, and the crystal armor can be crafted with fabric or leather.')
  12. }
  13. })
  14. doc.add_entry("epic_server", "crafting", {
  15. name = ("Crafting"),
  16. data = { text = ('Crafting on this server is not like many other servers or local games. Lots of items are only craftable in the stations. Thankfully the crafting guide in inventory will tell you which station to craft things in.\n\n'..
  17. 'Currently there is a bug where the craft recipe won\'t show the correct number of items if it is a group.')
  18. }
  19. })
  20. doc.add_entry("epic_server", "stations", {
  21. name = ("Stations"),
  22. data = { text = ('The Stations are where you\'ll do a goodly portion of your crafting. You can use the public ones in spawn, or create your own. Using public stations you leave yourself vulnerable to people stealing your resources.'..
  23. 'You can craft locked stations which will only allow people who have access to the area protection to place or remove items from the station inventories. This makes it safe to leave resources in the locked stations.'..
  24. 'Nearly all the stations provide their own craft guides which you can view by clicking the "Show Guide" button in the lower left.')
  25. }
  26. })
  27. doc.add_entry("epic_server", "mobs", {
  28. name = ("Mobs"),
  29. data = { text = ('There are many unusual and completely custom mobs on this server. They tend to get more and more powerful as you travel deeper into the earth, or further out into space.'..
  30. 'Don\'t try and visit the cavrealms, nether, or space without first getting yourself some suitable armor.')
  31. }
  32. })
  33. doc.add_entry("epic_server", "chat", {
  34. name = ("Chat"),
  35. data = { text = ('The server runs the Chat3 mod which lets you ignore players, this will prevent you from seeing their messages, and them from seeing your messages. '..
  36. 'You can ignore a player with the following command /ignore add <playername>\n'..
  37. 'Ingame chat is also tied to the Discord server. By default the Discord bridge is turned off for all players. To toggle the bridge use the /discord command.'..
  38. 'With the bridge disabled your chat messages will not be sent to discord, and you won\'t see any messages sent from discord.')
  39. }
  40. })