diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 6bcc004a0c..137eb0921a 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -485,6 +485,12 @@ var/global/datum/controller/occupations/job_master custom_equip_slots.Add(G.slot) else spawn_in_storage += thing + + /* CHOMPRemove Start + //Give new players a welcome guide! + if(H.client.player_age < 10) + H.equip_to_slot_or_del(new /obj/item/book/manual/virgo_pamphlet(H), slot_r_hand) + */// CHOMPRemove End else to_chat(H, span_filter_notice("Your job is [rank] and the game just can't handle it! Please report this bug to an administrator.")) diff --git a/code/modules/library/hardcode_library/reference/virgo_pamphlet.dm b/code/modules/library/hardcode_library/reference/virgo_pamphlet.dm new file mode 100644 index 0000000000..a8804e5a2d --- /dev/null +++ b/code/modules/library/hardcode_library/reference/virgo_pamphlet.dm @@ -0,0 +1,130 @@ +//A simplified lore document for new players that covers the vital lore of the server! + +/obj/item/book/manual/virgo_pamphlet + name = "Welcome to Virgo pamphlet" + icon_state = "pamphlet" + author = "Rhiannon Pryce, Sapient Resources" + title = "Welcome to Virgo" + w_class = ITEMSIZE_TINY + dat = {" + + + + + + Welcome to the Virgo-Erigone sytem newcomer! This handy pamphlet has been written to give a brief introduction to the local infastructure and culture, so that you know what is going on around you!
+ Here are some essential notes to get you started:
+
+ +

Contents

+
    +
  1. Local System
  2. +
  3. NanoTrasen Facilities
  4. +
  5. The Milky Way
  6. +
  7. Technology
  8. +
  9. Language
  10. +
  11. Species
  12. +
+
+ +

Local System

+ Virgo-Erigone, or Virgo, is a star system in the "Coreward Periphery" portion of the Milky Way galaxy. It is home to 5 notable planets.
+
+ Contents + +

NanoTrasen Facilities

+ NanoTrasen has a number of facilities set up and maintained across the Virgo-Erigone system, these are some of those you will most likely encounter in your time here:
+
+ Contents + +

The Milky Way

+ The people that you encounter and work alongside come from all sorts of places in the Milky Way, here are some details on the more local clusters.
+
+ Contents + +

Technology

+ Whilst the people who work in our facilities come from all manner of backgrounds, there are a number of technologies that we consider an essential part of our operations. +
+ Contents + +

Language

+ You will likely hear a number of different languages whilst you are working in our facilities, here are a couple that you may encounter.
+
+ Contents + +

Species

+ We are proud to state that our facilities are not just a melting pot of cultures, but of species too. +
+ Contents + + + + "} diff --git a/icons/obj/custom_books.dmi b/icons/obj/custom_books.dmi index f4bcefcf3a..adea0aa0a0 100644 Binary files a/icons/obj/custom_books.dmi and b/icons/obj/custom_books.dmi differ diff --git a/icons/obj/library.dmi b/icons/obj/library.dmi index c58c61a49f..0ca7ee5772 100644 Binary files a/icons/obj/library.dmi and b/icons/obj/library.dmi differ diff --git a/vorestation.dme b/vorestation.dme index 5ff6a65fdd..8464da4587 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -3094,6 +3094,7 @@ #include "code\modules\library\hardcode_library\non-fiction\PortedBooks.dm" #include "code\modules\library\hardcode_library\reference\PortedBooks.dm" #include "code\modules\library\hardcode_library\reference\Schnayy.dm" +#include "code\modules\library\hardcode_library\reference\virgo_pamphlet.dm" #include "code\modules\library\hardcode_library\religious\PortedBooks.dm" #include "code\modules\lighting\emissive_blocker.dm" #include "code\modules\lighting\lighting_area.dm"