From d8ef1647a733f2e1fed1deaef6741e81a08cb1a3 Mon Sep 17 00:00:00 2001 From: DJSnapshot Date: Mon, 23 Jun 2014 01:54:03 -0700 Subject: [PATCH] Forgot to commit welcome.dm --- .../computer3/computers/welcome.dm | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 code/WorkInProgress/computer3/computers/welcome.dm diff --git a/code/WorkInProgress/computer3/computers/welcome.dm b/code/WorkInProgress/computer3/computers/welcome.dm new file mode 100644 index 0000000000..11695ce532 --- /dev/null +++ b/code/WorkInProgress/computer3/computers/welcome.dm @@ -0,0 +1,34 @@ +/obj/machinery/computer3/laptop/vended + default_prog = /datum/file/program/welcome + + +/datum/file/program/welcome + name = "Welcome Screen" + desc = "First time boot splash screen" + active_state = "osod" + image = 'icons/ntos/program.png' + + + interact() + usr.set_machine(src) + if(!interactable()) + return + var/dat = "" + dat += "
Welcome to NTOS
" + dat += "
Thank you for choosing NTOS, your gateway to the future of mobile computing technology, sponsored by Nanotrasen (R)

" + dat += "Getting started with NTOS:
" + dat += "To leave a current program, click the X button in the top right corner of the window. This will return you to the NTOS desktop. \ + From the desktop, you can open the hard drive, usually located in the top left corner to access all the programs installed on your computer. \ + When you rented your laptop, you were supplied with programs that your Nanotrasen Issued ID has given you access to use. \ + In the event of a serious error, the right click menu will give you the ability to reset your computer. To open and close your laptop, alt-click your device.\ + If you have any questions or technical issues, please contact your local computer technical experts at your local Central Command." + popup.set_content(dat) + popup.set_title_image(usr.browse_rsc_icon(computer.icon, computer.icon_state)) + popup.open() + return + + Topic(href, href_list) + if(!interactable() || ..(href,href_list)) + return + interact() + return \ No newline at end of file