mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 03:27:46 +01:00
Merge pull request #7257 from VOREStation/aro-talontweaks3
Adds a fax machine to the ITV Talon
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
|
||||
//VOREStation Edit/Add
|
||||
else if(logo == "NanoTrasen")
|
||||
logo = "ntlogo.png"
|
||||
else
|
||||
logo = "trader.png"
|
||||
//VOREStation Edit/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>"
|
||||
@@ -152,4 +156,4 @@ obj/item/weapon/paper/admin/proc/updateDisplay()
|
||||
return
|
||||
|
||||
/obj/item/weapon/paper/admin/get_signature()
|
||||
return input(usr, "Enter the name you wish to sign the paper with (will prompt for multiple entries, in order of entry)", "Signature") as text|null
|
||||
return input(usr, "Enter the name you wish to sign the paper with (will prompt for multiple entries, in order of entry)", "Signature") as text|null
|
||||
|
||||
@@ -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
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
@@ -193,6 +193,9 @@ Once in open space, consider disabling nonessential power-consuming electronics
|
||||
/obj/machinery/camera/network/talon
|
||||
network = list(NETWORK_TALON_SHIP)
|
||||
|
||||
/obj/machinery/photocopier/faxmachine/talon
|
||||
department = "ITV Talon"
|
||||
desc = "The ship's fax machine! It's a safe assumption that most of the departments listed aren't on your ship, since the ship only has one."
|
||||
|
||||
/obj/item/clothing/head/helmet/space/void/captain/talon
|
||||
name = "talon captain's voidsuit helmet"
|
||||
|
||||
@@ -3522,6 +3522,7 @@
|
||||
},
|
||||
/obj/structure/table/standard,
|
||||
/obj/effect/floor_decal/borderfloor,
|
||||
/obj/machinery/photocopier/faxmachine/talon,
|
||||
/turf/simulated/floor/tiled/steel,
|
||||
/area/talon/deckone/workroom)
|
||||
"gA" = (
|
||||
@@ -3541,6 +3542,8 @@
|
||||
},
|
||||
/obj/structure/table/standard,
|
||||
/obj/effect/floor_decal/borderfloor,
|
||||
/obj/item/weapon/paper_bin,
|
||||
/obj/item/weapon/pen,
|
||||
/turf/simulated/floor/tiled/steel,
|
||||
/area/talon/deckone/workroom)
|
||||
"gC" = (
|
||||
|
||||
Reference in New Issue
Block a user