mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-25 22:28:44 +01:00
Adds a fax machine to the ITV Talon
Also adds 'trader' reply fax choice
This commit is contained in:
@@ -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,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
|
||||
|
||||
Reference in New Issue
Block a user