improved robot admin handling

This commit is contained in:
Kashargul
2023-12-12 23:11:33 +01:00
committed by GitHub
parent 552deaedf1
commit bd90942c17
4 changed files with 231 additions and 184 deletions
@@ -369,7 +369,7 @@
var/list/science_paper_forms = list("SCI-3003: Cyborg / Robot Inspection", "SCI-3004: Cyborg / Robot Upgrades", "SCI-3009: Xenoflora Genetics Report")
var/list/medical_paper_forms = list("MED-4001: Death Certificate", "MED-4002: Prescription", "MED-4003: Against Medical Advice", "MED-4004: Cyborgification Contract", "MED-4005: Mental Health Patient Intake", "MED-4006: NIF Surgery", "MED-4007: Psychiatric Evaluation")
var/list/engineering_paper_forms = list("ENG-5001: Building Permit")
var/list/service_paper_forms = list()
var/list/service_paper_forms = list("SER-6005: Certificate of Marriage")
var/list/exploration_paper_forms = list()
var/list/event_paper_forms = list()
var/list/other_paper_forms = list("OTHR-9001: Emergency Transmission", "OTHR-9032: Ownership Transfer")
@@ -439,7 +439,7 @@
split = splittext(mercenary_paper, ": ")
else
return
return list(select_form(split[1]), split[1] + ": " + split[2])
return list(select_form(split[1], split[2]), split[1] + ": " + split[2])
/obj/item/weapon/form_printer/proc/select_form(paperid, name)
var/content = ""
@@ -557,6 +557,9 @@
content = @{"[grid][row][cell][b]Location:[/b] [cell][field][br][row][cell][b]Purpose:[/b] [cell][field][/grid][br][hr][br]I, [[u][field][/u]] certify that I have reviewed and approved of provided blueprints. I have verified that design will be structurally sound and fall within building guidelines. I and any others participating in its construction will ensure that the blueprint will be followed.[br][br][br][b]Blueprint:[/b] [field][br][br][hr][grid][row][cell][list][b]Constructing Engineer signature:[/b][/list][cell][list][list][list][list][list][b]Chief Engineer signature:[/b][/list][/list][/list][/list][/list][cell][br][row][cell][list] - [field][/list][cell][list][list][list][list][list]- [large][field][/large][/list][/list][/list][/list][/list][cell][/grid]"}
revision = "Revision 1.1"
//Service forms, SER-6
if("SER-6005")
content = @{"[hr][br][center]This is to certify that[br][br][u]_[field]_[/u] and [u]_[field]_[/u][br][br]were united in marriage at [u]_[field]_[/u] on date [u]_[field]_[/u][br][br][hr][grid][row][cell][list][b]Bride:[/b][/list][cell][cell][list][list][list][list][b]Groom:[/b][/list][/list][/list][/list][cell][row][cell][list] - [large][field][/large][/list][cell][cell][list][list][list][list]- [large][field][/large][/list][/list][/list][/list][cell][/grid][hr][br][b]Chaplain:[/b] [large][field][/large]"}
revision = "Revision 1.4"
//Explorer forms, EXP-7
//Event forms, EVNT-8
//Other forms, OTHR-9