|
23 | 23 | var/network = "ss13" |
24 | 24 | var/obj/machinery/camera/current = null |
25 | 25 |
|
26 | | - var/ram = 100 // Used as currency to purchase different abilities |
| 26 | + // Used as currency to purchase different abilities |
| 27 | + var/ram = 100 |
27 | 28 | var/list/software = list() |
28 | | - var/userDNA // The DNA string of our assigned user |
29 | | - var/obj/item/computer_hardware/paicard/card // The card we inhabit |
30 | | - var/hacking = FALSE //Are we hacking a door? |
| 29 | + // The DNA string of our assigned user |
| 30 | + var/userDNA |
| 31 | + // The card we inhabit |
| 32 | + var/obj/item/computer_hardware/paicard/card |
| 33 | + //Are we hacking a door? |
| 34 | + var/hacking = FALSE |
31 | 35 |
|
32 | 36 | var/speakStatement = "states" |
33 | 37 | var/speakExclamation = "declares" |
34 | 38 | var/speakDoubleExclamation = "alarms" |
35 | 39 | var/speakQuery = "queries" |
36 | 40 |
|
37 | | - var/obj/item/pai_cable/cable // The cable we produce and use when door or camera jacking |
| 41 | + // The cable we produce and use when door or camera jacking |
| 42 | + var/obj/item/pai_cable/cable |
38 | 43 |
|
39 | | - var/master // Name of the one who commands us |
40 | | - var/master_dna // DNA string for owner verification |
| 44 | + // Name of the one who commands us |
| 45 | + var/master |
| 46 | + // DNA string for owner verification |
| 47 | + var/master_dna |
41 | 48 |
|
42 | 49 | // Various software-specific vars |
43 | 50 |
|
44 | | - var/obj/machinery/door/hackdoor // The airlock being hacked |
45 | | - var/hackprogress = 0 // Possible values: 0 - 100, >= 100 means the hack is complete and will be reset upon next check |
| 51 | + // The airlock being hacked |
| 52 | + var/obj/machinery/door/hackdoor |
| 53 | + // Possible values: 0 - 100, >= 100 means the hack is complete and will be reset upon next check |
| 54 | + var/hackprogress = 0 |
46 | 55 |
|
47 | 56 | /// Remote signaler |
48 | 57 | var/obj/item/assembly/signaler/internal/signaler |
49 | 58 |
|
50 | 59 | var/obj/item/instrument/piano_synth/internal_instrument |
51 | | - var/obj/machinery/newscaster //pAI Newscaster |
52 | | - var/obj/item/healthanalyzer/hostscan //pAI healthanalyzer |
| 60 | + //pAI Newscaster |
| 61 | + var/obj/machinery/newscaster |
| 62 | + //pAI healthanalyzer |
| 63 | + var/obj/item/healthanalyzer/hostscan |
53 | 64 |
|
54 | 65 | //Whether the pAI has bought the encryption slot module or not |
55 | 66 | var/encryptmod = FALSE |
|
72 | 83 | var/emittersemicd = FALSE |
73 | 84 |
|
74 | 85 | var/overload_ventcrawl = 0 |
75 | | - var/overload_bulletblock = 0 //Why is this a good idea? |
| 86 | + //Why is this a good idea? |
| 87 | + var/overload_bulletblock = 0 |
76 | 88 | var/overload_maxhealth = 0 |
77 | 89 | var/silent = FALSE |
78 | 90 | var/brightness_power = 5 |
|
0 commit comments