Adds a fax machine to the ITV Talon

Also adds 'trader' reply fax choice
This commit is contained in:
Aronai Sieyes
2020-04-14 16:40:21 -04:00
parent c5b3be0123
commit a1dcd049b8
5 changed files with 13 additions and 3 deletions
+6 -2
View File
@@ -40,11 +40,15 @@
var/originhash = md5("[origin]")
var/timehash = copytext(md5("[world.time]"),1,10)
var/text = null
var/logo = alert(usr, "Do you want the header of your fax to have a NanoTrasen or SolGov logo?","Fax Logo","NanoTrasen","SolGov")
var/logo = alert(usr, "Do you want the header of your fax to have a NanoTrasen, SolGov, or Trader logo?","Fax Logo","NanoTrasen","SolGov","Trader") //VOREStation Add - Trader
if(logo == "SolGov")
logo = "sglogo.png"
else
else if(logo == "NanoTrasen")
logo = "ntlogo.png"
//VOREStation Add
else
logo = "trader.png"
//VOREStation Add End
//TODO change logo based on who you're contacting.
text = "<center><img src = [logo]></br>"
text += "<b>[origin] Quantum Uplink Signed Message</b><br>"
+1 -1
View File
@@ -1,5 +1,5 @@
var/list/obj/machinery/photocopier/faxmachine/allfaxes = list()
var/list/admin_departments = list("[using_map.boss_name]", "Virgo-Prime Governmental Authority", "Supply") // Vorestation Edit
var/list/admin_departments = list("[using_map.boss_name]", "Virgo-Prime Governmental Authority", "Virgo-Erigonne Job Boards", "Supply") // Vorestation Edit
var/list/alldepartments = list()
var/list/adminfaxes = list() //cache for faxes that have been sent to admins