- {^{if manifest.heads.length}}
+ {{if manifest.heads.length}}
| Command |
- {^{for manifest["heads"]}}
- {^{if rank == "Captain"}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ {{for manifest["heads"]}}
+ {{if rank == "Captain"}}
+ | {{:name}} | {{:rank}} | {{:active}} |
{{else}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ | {{:name}} | {{:rank}} | {{:active}} |
{{/if}}
{{/for}}
{{/if}}
- {^{if manifest.sec.length}}
+ {{if manifest.sec.length}}
| Security |
- {^{for manifest["sec"]}}
- {^{if rank == "Head of Security"}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ {{for manifest["sec"]}}
+ {{if rank == "Head of Security"}}
+ | {{:name}} | {{:rank}} | {{:active}} |
{{else}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ | {{:name}} | {{:rank}} | {{:active}} |
{{/if}}
{{/for}}
{{/if}}
- {^{if manifest.eng.length}}
+ {{if manifest.eng.length}}
| Engineering |
- {^{for manifest["eng"]}}
- {^{if rank == "Chief Engineer"}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ {{for manifest["eng"]}}
+ {{if rank == "Chief Engineer"}}
+ | {{:name}} | {{:rank}} | {{:active}} |
{{else}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ | {{:name}} | {{:rank}} | {{:active}} |
{{/if}}
{{/for}}
{{/if}}
- {^{if manifest.med.length}}
+ {{if manifest.med.length}}
| Medical |
- {^{for manifest["med"]}}
- {^{if rank == "Chief Medical Officer"}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ {{for manifest["med"]}}
+ {{if rank == "Chief Medical Officer"}}
+ | {{:name}} | {{:rank}} | {{:active}} |
{{else}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ | {{:name}} | {{:rank}} | {{:active}} |
{{/if}}
{{/for}}
{{/if}}
- {^{if manifest.sci.length}}
+ {{if manifest.sci.length}}
| Science |
- {^{for manifest["sci"]}}
- {^{if rank == "Research Director"}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ {{for manifest["sci"]}}
+ {{if rank == "Research Director"}}
+ | {{:name}} | {{:rank}} | {{:active}} |
{{else}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ | {{:name}} | {{:rank}} | {{:active}} |
{{/if}}
{{/for}}
{{/if}}
- {^{if manifest.civ.length}}
+ {{if manifest.civ.length}}
| Civilian |
- {^{for manifest["civ"]}}
- {^{if rank == "Head of Personnel"}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ {{for manifest["civ"]}}
+ {{if rank == "Head of Personnel"}}
+ | {{:name}} | {{:rank}} | {{:active}} |
{{else}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ | {{:name}} | {{:rank}} | {{:active}} |
{{/if}}
{{/for}}
{{/if}}
- {^{if manifest.misc.length}}
+ {{if manifest.misc.length}}
| Misc |
- {^{for manifest["misc"]}}
- | {^{:name}} | {^{:rank}} | {^{:active}} |
+ {{for manifest["misc"]}}
+ | {{:name}} | {{:rank}} | {{:active}} |
{{/for}}
{{/if}}
@@ -343,51 +343,51 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Atmospheric Scan
- {^{if aircontents.reading == 1}}
+ {{if aircontents.reading == 1}}
Pressure:
- {^{:~string('{1} kPa', aircontents.pressure < 80 || aircontents.pressure > 120 ? 'bad' : aircontents.pressure < 95 || aircontents.pressure > 110 ? 'average' : 'good' , aircontents.pressure)}}
+ {{:~string('{1} kPa', aircontents.pressure < 80 || aircontents.pressure > 120 ? 'bad' : aircontents.pressure < 95 || aircontents.pressure > 110 ? 'average' : 'good' , aircontents.pressure)}}
Temperature:
- {^{:~string('{1} °C', aircontents.temp < 5 || aircontents.temp > 35 ? 'bad' : aircontents.temp < 15 || aircontents.temp > 25 ? 'average' : 'good' , aircontents.temp)}}
+ {{:~string('{1} °C', aircontents.temp < 5 || aircontents.temp > 35 ? 'bad' : aircontents.temp < 15 || aircontents.temp > 25 ? 'average' : 'good' , aircontents.temp)}}
Oxygen:
- {^{:~string('{1}%', aircontents.oxygen < 17 ? 'bad' : aircontents.oxygen < 19 ? 'average' : 'good' , aircontents.oxygen)}}
+ {{:~string('{1}%', aircontents.oxygen < 17 ? 'bad' : aircontents.oxygen < 19 ? 'average' : 'good' , aircontents.oxygen)}}
Nitrogen:
- {^{:~string('{1}%', aircontents.nitrogen > 82 ? 'bad' : aircontents.nitrogen > 80 ? 'average' : 'good' , aircontents.nitrogen)}}
+ {{:~string('{1}%', aircontents.nitrogen > 82 ? 'bad' : aircontents.nitrogen > 80 ? 'average' : 'good' , aircontents.nitrogen)}}
Carbon Dioxide:
- {^{:~string('{1}%', aircontents.carbon_dioxide > 5 ? 'bad' : 'good' , aircontents.carbon_dioxide)}}
+ {{:~string('{1}%', aircontents.carbon_dioxide > 5 ? 'bad' : 'good' , aircontents.carbon_dioxide)}}
Plasma:
- {^{:~string('{1}%', aircontents.plasma > 0 ? 'bad' : 'good' , aircontents.plasma)}}
+ {{:~string('{1}%', aircontents.plasma > 0 ? 'bad' : 'good' , aircontents.plasma)}}
- {^{if aircontents.other > 0}}
+ {{if aircontents.other > 0}}
Unknown:
- {^{:aircontents.other}}%
+ {{:aircontents.other}}%
{{/if}}
{{else}}
@@ -405,13 +405,13 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Frequency:
- {^{:records.signal_freq}}
+ {{:records.signal_freq}}
- {^{:~link('-1', null, {'cartmenu' : "1", 'choice' : "Signal Frequency", 'sfreq' : "-10"},null, null)}}
- {^{:~link('-.2', null, {'cartmenu' : "1", 'choice' : "Signal Frequency", 'sfreq' : "-2"},null, null)}}
+ {{:~link('-1', null, {'cartmenu' : "1", 'choice' : "Signal Frequency", 'sfreq' : "-10"}, null, null)}}
+ {{:~link('-.2', null, {'cartmenu' : "1", 'choice' : "Signal Frequency", 'sfreq' : "-2"}, null, null)}}
- {^{:~link('+.2', null, {'cartmenu' : "1", 'choice' : "Signal Frequency", 'sfreq' : "2"},null, null)}}
- {^{:~link('+1', null, {'cartmenu' : "1", 'choice' : "Signal Frequency", 'sfreq' : "10"},null, null)}}
+ {{:~link('+.2', null, {'cartmenu' : "1", 'choice' : "Signal Frequency", 'sfreq' : "2"}, null, null)}}
+ {{:~link('+1', null, {'cartmenu' : "1", 'choice' : "Signal Frequency", 'sfreq' : "10"}, null, null)}}
@@ -421,16 +421,16 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
- {^{:records.signal_code}}
+ {{:records.signal_code}}
- {^{:~link('-5', null, {'cartmenu' : "1", 'choice' : "Signal Code", 'scode' : "-5"},null, null)}}
- {^{:~link('-1', null, {'cartmenu' : "1", 'choice' : "Signal Code", 'scode' : "-1"},null, null)}}
- {^{:~link('+1', null, {'cartmenu' : "1", 'choice' : "Signal Code", 'scode' : "1"},null, null)}}
- {^{:~link('+5', null, {'cartmenu' : "1", 'choice' : "Signal Code", 'scode' : "5"},null, null)}}
+ {{:~link('-5', null, {'cartmenu' : "1", 'choice' : "Signal Code", 'scode' : "-5"}, null, null)}}
+ {{:~link('-1', null, {'cartmenu' : "1", 'choice' : "Signal Code", 'scode' : "-1"}, null, null)}}
+ {{:~link('+1', null, {'cartmenu' : "1", 'choice' : "Signal Code", 'scode' : "1"}, null, null)}}
+ {{:~link('+5', null, {'cartmenu' : "1", 'choice' : "Signal Code", 'scode' : "5"}, null, null)}}
- {^{:~link('Send Signal', 'radiation', {'cartmenu' : "1", 'choice' : "Send Signal"},null, null)}}
+ {{:~link('Send Signal', 'radiation', {'cartmenu' : "1", 'choice' : "Send Signal"}, null, null)}}
{{else mode == 42}}
@@ -440,9 +440,9 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Code:
- {^{:~link('Clear', 'trash', {'cartmenu' : "1", 'choice' : "Status", 'statdisp' : "blank"},null, null)}}
- {^{:~link('Shuttle ETA', 'gear', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "shuttle"},null, null)}}
- {^{:~link('Message', 'gear', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "message"},null, null)}}
+ {{:~link('Clear', 'trash', {'cartmenu' : "1", 'choice' : "Status", 'statdisp' : "blank"}, null, null)}}
+ {{:~link('Shuttle ETA', 'gear', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "shuttle"}, null, null)}}
+ {{:~link('Message', 'gear', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "message"}, null, null)}}
@@ -451,7 +451,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Message line 1
- {^{:~link(records.message1 + ' (set)', 'pencil', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "setmsg1"},null, null)}}
+ {{:~link(records.message1 + ' (set)', 'pencil', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "setmsg1"}, null, null)}}
@@ -459,7 +459,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Message line 2
- {^{:~link(records.message2 + ' (set)', 'pencil', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "setmsg2"},null, null)}}
+ {{:~link(records.message2 + ' (set)', 'pencil', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "setmsg2"}, null, null)}}
@@ -469,10 +469,10 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
ALERT!:
- {^{:~link('None', 'alert', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "alert", 'default' : "alert"},null, null)}}
- {^{:~link('Alert', 'alert', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "alert", 'alert' : "alert"},null, null)}}
- {^{:~link('Lockdown', 'caution', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "alert", 'alert' : "alert"},null, null)}}
- {^{:~link('Biohazard', 'radiation', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "alert", 'alert' : "alert"},null, null)}}
+ {{:~link('None', 'alert', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "alert", 'default' : "alert"}, null, null)}}
+ {{:~link('Alert', 'alert', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "alert", 'alert' : "alert"}, null, null)}}
+ {{:~link('Lockdown', 'caution', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "alert", 'alert' : "alert"}, null, null)}}
+ {{:~link('Biohazard', 'radiation', {'cartmenu' : "1", 'choice' : "Status",'statdisp' : "alert", 'alert' : "alert"}, null, null)}}
@@ -482,9 +482,9 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Select A power monitor:
- {^{for records.powermonitors}}
+ {{for records.powermonitors}}
- {^{:~link(Name, 'radiation', {'cartmenu' : "1", 'choice' : "Power Select",'target' : ref},null, null)}}
+ {{:~link(Name, 'radiation', {'cartmenu' : "1", 'choice' : "Power Select",'target' : ref}, null, null)}}
{{/for}}
@@ -495,7 +495,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Current Load:
- {^{:records.powerload}} W
+ {{:records.powerload}} W
@@ -503,22 +503,22 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Total Power:
- {^{:records.poweravail}} W
+ {{:records.poweravail}} W
- {^{for records.apcs}}
- {^{if #index % 20 === 0}}
+ {{for records.apcs}}
+ {{if #index % 20 === 0}}
| Area | Eqp. | Lgt. | Env | Cell |
{{/if}}
- | {^{:Name}} |
- {^{:~string(' | ', Equipment==1 ? '#4f7529' : '#8f1414' )}}
- {^{:~string(' | ', Lights==1 ? '#4f7529' : '#8f1414' )}}
- {^{:~string(' | ', Environment==1 ? '#4f7529' : '#8f1414' )}}
- {^{:~string('{1} | ', CellStatus==1 ? '#4f7529' : '#8f1414', CellStatus==-1 ? 'No Cell' : CellPct + '%' )}}
+
| {{:Name}} |
+ {{:~string(' | ', Equipment==1 ? '#4f7529' : '#8f1414')}}
+ {{:~string(' | ', Lights==1 ? '#4f7529' : '#8f1414')}}
+ {{:~string(' | ', Environment==1 ? '#4f7529' : '#8f1414')}}
+ {{:~string('{1} | ', CellStatus==1 ? '#4f7529' : '#8f1414', CellStatus==-1 ? 'No Cell' : CellPct + '%')}}
{{/for}}
@@ -530,9 +530,9 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Select A record
- {^{for records.medical_records}}
+ {{for records.medical_records}}
- {^{:~link(Name, 'gear', {'cartmenu' : "1", 'choice' : "Medical Records",'target' : ref},null, null)}}
+ {{:~link(Name, 'gear', {'cartmenu' : "1", 'choice' : "Medical Records",'target' : ref}, null, null)}}
{{/for}}
@@ -543,32 +543,32 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
- {^{if records.general_exists == 1}}
- Name: {^{:records.general.name}}
- Sex: {^{:records.general.sex}}
- Species: {^{:records.general.species}}
- Age: {^{:records.general.age}}
- Rank: {^{:records.general.rank}}
- Fingerprint: {^{:records.general.fingerprint}}
- Physical Status: {^{:records.general.p_stat}}
- Mental Status: {^{:records.general.m_stat}}
+ {{if records.general_exists == 1}}
+ Name: {{:records.general.name}}
+ Sex: {{:records.general.sex}}
+ Species: {{:records.general.species}}
+ Age: {{:records.general.age}}
+ Rank: {{:records.general.rank}}
+ Fingerprint: {{:records.general.fingerprint}}
+ Physical Status: {{:records.general.p_stat}}
+ Mental Status: {{:records.general.m_stat}}
{{else}}
General Record Lost!
{{/if}}
- {^{if records.medical_exists == 1}}
+ {{if records.medical_exists == 1}}
Medical Data:
- Blood Type: {^{:records.medical.b_type}}
- Minor Disabilities: {^{:records.medical.mi_dis}}
- Details: {^{:records.medical.mi_dis_d}}
- Major Disabilities: {^{:records.medical.ma_dis}}
- Details: {^{:records.medical.ma_dis_d}}
- Allergies: {^{:records.medical.alg}}
- Details: {^{:records.medical.alg_d}}
- Current Disease: {^{:records.medical.cdi}}
- Details: {^{:records.medical.alg_d}}
- Important Notes: {^{:records.medical.notes}}
+ Blood Type: {{:records.medical.b_type}}
+ Minor Disabilities: {{:records.medical.mi_dis}}
+ Details: {{:records.medical.mi_dis_d}}
+ Major Disabilities: {{:records.medical.ma_dis}}
+ Details: {{:records.medical.ma_dis_d}}
+ Allergies: {{:records.medical.alg}}
+ Details: {{:records.medical.alg_d}}
+ Current Disease: {{:records.medical.cdi}}
+ Details: {{:records.medical.alg_d}}
+ Important Notes: {{:records.medical.notes}}
{{else}}
Medical Record Lost!
@@ -585,9 +585,9 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Select A record
- {^{for records.security_records}}
+ {{for records.security_records}}
- {^{:~link(Name, 'gear', {'cartmenu' : "1", 'choice' : "Security Records",'target' : ref},null, null)}}
+ {{:~link(Name, 'gear', {'cartmenu' : "1", 'choice' : "Security Records",'target' : ref}, null, null)}}
{{/for}}
@@ -598,28 +598,28 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
- {^{if records.general_exists == 1}}
- Name: {^{:records.general.name}}
- Sex: {^{:records.general.sex}}
- Species: {^{:records.general.species}}
- Age: {^{:records.general.age}}
- Rank: {^{:records.general.rank}}
- Fingerprint: {^{:records.general.fingerprint}}
- Physical Status: {^{:records.general.p_stat}}
- Mental Status: {^{:records.general.m_stat}}
+ {{if records.general_exists == 1}}
+ Name: {{:records.general.name}}
+ Sex: {{:records.general.sex}}
+ Species: {{:records.general.species}}
+ Age: {{:records.general.age}}
+ Rank: {{:records.general.rank}}
+ Fingerprint: {{:records.general.fingerprint}}
+ Physical Status: {{:records.general.p_stat}}
+ Mental Status: {{:records.general.m_stat}}
{{else}}
General Record Lost!
{{/if}}
- {^{if records.security_exists == 1}}
+ {{if records.security_exists == 1}}
Security Data:
- Criminal Status: {^{:records.security.criminal}}
- Minor Crimes: {^{:records.security.mi_crim}}
- Details: {^{:records.security.mi_crim_d}}
- Major Crimes: {^{:records.security.ma_crim}}
- Details: {^{:records.security.ma_crim_d}}
- Important Notes: {^{:records.security.notes}}
+ Criminal Status: {{:records.security.criminal}}
+ Minor Crimes: {{:records.security.mi_crim}}
+ Details: {{:records.security.mi_crim_d}}
+ Major Crimes: {{:records.security.ma_crim}}
+ Details: {{:records.security.ma_crim_d}}
+ Important Notes: {{:records.security.notes}}
{{else}}
Security Record Lost!
@@ -630,27 +630,27 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
{{else mode == 46}}
Security Bot Control
- {^{if records.beepsky.active == null || records.beepsky.active == 0}}
- {^{if records.beepsky.count == 0}}
+ {{if records.beepsky.active == null || records.beepsky.active == 0}}
+ {{if records.beepsky.count == 0}}
No bots found.
{{else}}
Select A Bot.
- {^{for records.beepsky.bots}}
+ {{for records.beepsky.bots}}
- {^{:~link(Name, 'gear', {'radiomenu' : "1", 'op' : "control",'bot' : ref},null, null)}} (Location: {^{:Location}})
+ {{:~link(Name, 'gear', {'radiomenu' : "1", 'op' : "control",'bot' : ref}, null, null)}} (Location: {{:Location}})
{{/for}}
{{/if}}
- {^{:~link('Scan for Bots','gear', {'radiomenu' : "1", 'op' : "scanbots"},null, null)}}
+ {{:~link('Scan for Bots','gear', {'radiomenu' : "1", 'op' : "scanbots"}, null, null)}}
{{else}}
-
{^{:records.beepsky.active}}
+
{{:records.beepsky.active}}
- {^{if records.beepsky.botstatus.mode == -1}}
+ {{if records.beepsky.botstatus.mode == -1}}
Waiting for response...
{{else}}
Status:
@@ -660,7 +660,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Location:
- {^{:records.beepsky.botstatus.loca}}
+ {{:records.beepsky.botstatus.loca}}
@@ -669,7 +669,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
- {^{if records.beepsky.botstatus.mode ==0}} Ready
+ {{if records.beepsky.botstatus.mode ==0}} Ready
{{else records.beepsky.botstatus.mode == 1}}
Apprehending target
{{else records.beepsky.botstatus.mode ==2 || records.beepsky.botstatus.mode == 3}}
@@ -685,12 +685,12 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
- {^{:~link('Stop Patrol', 'gear', {'radiomenu' : "1", 'op' : "stop"},null, null)}}
- {^{:~link('Start Patrol', 'gear', {'radiomenu' : "1", 'op' : "go"},null, null)}}
- {^{:~link('Summon Bot', 'gear', {'radiomenu' : "1", 'op' : "summon"},null, null)}}
+ {{:~link('Stop Patrol', 'gear', {'radiomenu' : "1", 'op' : "stop"}, null, null)}}
+ {{:~link('Start Patrol', 'gear', {'radiomenu' : "1", 'op' : "go"}, null, null)}}
+ {{:~link('Summon Bot', 'gear', {'radiomenu' : "1", 'op' : "summon"}, null, null)}}
{{/if}}
- {^{:~link('Return to Bot list', 'gear', {'radiomenu' : "1", 'op' : "botlist"},null, null)}}
+ {{:~link('Return to Bot list', 'gear', {'radiomenu' : "1", 'op' : "botlist"}, null, null)}}
{{/if}}
{{else mode == 47}}
Supply Record Interlink
@@ -700,10 +700,10 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
- {^{if records.supply.shuttle_moving}}
- Moving to station ({^{:records.supply.shuttle_eta}})
+ {{if records.supply.shuttle_moving}}
+ Moving to station ({{:records.supply.shuttle_eta}})
{{else}}
- Shuttle at {^{:records.supply.shuttle_loc}}
+ Shuttle at {{:records.supply.shuttle_loc}}
{{/if}}
@@ -712,20 +712,20 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Current Approved Orders
- {^{if records.supply.approved_count == 0}}
+ {{if records.supply.approved_count == 0}}
No current approved orders
{{else}}
- {^{for records.supply.approved}}
- #{^{:Number}} - {^{:Name}} approved by {^{:OrderedBy}}
{^{if Comment != ""}} {^{:Comment}}
{{/if}}
+ {{for records.supply.approved}}
+ #{{:Number}} - {{:Name}} approved by {{:OrderedBy}}
{{if Comment != ""}} {{:Comment}}
{{/if}}
{{/for}}
{{/if}}
Current Requested Orders
- {^{if records.supply.requests_count == 0}}
+ {{if records.supply.requests_count == 0}}
No current requested orders
{{else}}
- {^{for records.supply.requests}}
- #{^{:Number}} - {^{:Name}} requested by {^{:OrderedBy}}
{^{if Comment != ""}} {^{:Comment}}
{{/if}}
+ {{for records.supply.requests}}
+ #{{:Number}} - {{:Name}} requested by {{:OrderedBy}}
{{if Comment != ""}} {{:Comment}}
{{/if}}
{{/for}}
{{/if}}
@@ -734,8 +734,8 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
{{else mode == 48}}
Mule Control
- {^{if records.mulebot.active == null || records.mulebot.active == 0}}
- {^{if records.mulebot.count == 0}}
+ {{if records.mulebot.active == null || records.mulebot.active == 0}}
+ {{if records.mulebot.count == 0}}
No bots found.
{{else}}
@@ -744,16 +744,16 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Select A Mulebot
- {^{for records.mulebot.bots}}
+ {{for records.mulebot.bots}}
- {^{:~link(Name, 'gear', {'radiomenu' : "1", 'op' : "control",'bot' : ref},null, null)}} (Location: {^{:Location}})
+ {{:~link(Name, 'gear', {'radiomenu' : "1", 'op' : "control",'bot' : ref}, null, null)}} (Location: {{:Location}})
{{/for}}
{{/if}}
- {^{:~link('Scan for Bots','gear', {'radiomenu' : "1", 'op' : "scanbots"},null, null)}}
+ {{:~link('Scan for Bots','gear', {'radiomenu' : "1", 'op' : "scanbots"}, null, null)}}
{{else}}
- {^{if records.mulebot.botstatus.mode == -1}}
+ {{if records.mulebot.botstatus.mode == -1}}
Waiting for response...
{{else}}
Status:
@@ -763,7 +763,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Location:
- {^{:records.mulebot.botstatus.loca}}
+ {{:records.mulebot.botstatus.loca}}
@@ -772,7 +772,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
- {^{if records.mulebot.botstatus.mode ==0}} Ready
+ {{if records.mulebot.botstatus.mode ==0}} Ready
{{else records.mulebot.botstatus.mode == 1}}
Loading/Unloading
{{else records.mulebot.botstatus.mode ==2}}
@@ -796,7 +796,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
- {^{:~link(records.mulebot.botstatus.load == null ? 'None (Unload)' : records.mulebot.botstatus.load + ' (Unload)', 'gear', {'radiomenu' : "1", 'op' : "unload"},records.mulebot.botstatus.load == null ? 'disabled' : null, null)}}
+ {{:~link(records.mulebot.botstatus.load == null ? 'None (Unload)' : records.mulebot.botstatus.load + ' (Unload)', 'gear', {'radiomenu' : "1", 'op' : "unload"},records.mulebot.botstatus.load == null ? 'disabled' : null, null)}}
@@ -806,7 +806,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
- {^{:records.mulebot.botstatus.powr}}%
+ {{:records.mulebot.botstatus.powr}}%
@@ -816,7 +816,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Destination:
- {^{:~link(records.mulebot.botstatus.dest == null || records.mulebot.botstatus.dest == "" ? 'None (Set)': records.mulebot.botstatus.dest+ ' (Set)', 'gear', {'radiomenu' : "1", 'op' : "setdest"},null, null)}}
+ {{:~link(records.mulebot.botstatus.dest == null || records.mulebot.botstatus.dest == "" ? 'None (Set)': records.mulebot.botstatus.dest+ ' (Set)', 'gear', {'radiomenu' : "1", 'op' : "setdest"}, null, null)}}
@@ -825,7 +825,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Home:
- {^{if records.mulebot.botstatus.home == null}} None {{else}} {^{:records.mulebot.botstatus.home}} {{/if}}
+ {{if records.mulebot.botstatus.home == null}} None {{else}} {{:records.mulebot.botstatus.home}} {{/if}}
@@ -833,7 +833,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Auto Return:
- {^{:~link(records.mulebot.botstatus.retn == 1 ? 'ON' : 'OFF', 'gear', {'radiomenu' : "1", 'op' : records.mulebot.botstatus.retn==1 ? "retoff" : "reton"},null, null)}}
+ {{:~link(records.mulebot.botstatus.retn == 1 ? 'ON' : 'OFF', 'gear', {'radiomenu' : "1", 'op' : records.mulebot.botstatus.retn==1 ? "retoff" : "reton"}, null, null)}}
@@ -841,7 +841,7 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Auto Pickup:
- {^{:~link(records.mulebot.botstatus.pick==1? 'ON' : 'OFF', 'gear', {'radiomenu' : "1", 'op' : records.mulebot.botstatus.pick==1 ? "pickoff" : "pickon"},null, null)}}
+ {{:~link(records.mulebot.botstatus.pick==1? 'ON' : 'OFF', 'gear', {'radiomenu' : "1", 'op' : records.mulebot.botstatus.pick==1 ? "pickoff" : "pickon"}, null, null)}}
@@ -849,13 +849,13 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Functions:
- {^{:~link('Stop', 'gear', {'radiomenu' : "1", 'op' : "stop"},null, null)}}
- {^{:~link('Proceed', 'gear', {'radiomenu' : "1", 'op' : "go"},null, null)}}
- {^{:~link('Return Home', 'gear', {'radiomenu' : "1", 'op' : "home"},null, null)}}
+ {{:~link('Stop', 'gear', {'radiomenu' : "1", 'op' : "stop"}, null, null)}}
+ {{:~link('Proceed', 'gear', {'radiomenu' : "1", 'op' : "go"}, null, null)}}
+ {{:~link('Return Home', 'gear', {'radiomenu' : "1", 'op' : "home"}, null, null)}}
- {^{:~link('Return to Bot list', 'gear', {'radiomenu' : "1", 'op' : "botlist"},null, null)}}
+ {{:~link('Return to Bot list', 'gear', {'radiomenu' : "1", 'op' : "botlist"}, null, null)}}
{{/if}}
@@ -867,50 +867,50 @@ Used In File(s): \code\game\objects\items\devices\PDA\PDA.dm
Janatorial Supplies Locator
Current Location:
- {^{if records.janitor.user_loc.x == 0}}
+ {{if records.janitor.user_loc.x == 0}}
Unknown
{{else}}
- {^{:records.janitor.user_loc.x}} / {^{:records.janitor.user_loc.y}}
+ {{:records.janitor.user_loc.x}} / {{:records.janitor.user_loc.y}}
{{/if}}
- {^{for records.janitor.mops}}
- {^{if x==0}}
+ {{for records.janitor.mops}}
+ {{if x==0}}
Unable to locate Mop
{{else}}
Mop Location:
- ({^{:x}} / {^{:y}}) - {^{:dir}} - Status: {^{:status}}
+ ({{:x}} / {{:y}}) - {{:dir}} - Status: {{:status}}
{{/if}}
{{/for}}
- {^{for records.janitor.buckets}}
- {^{if x==0}}
+ {{for records.janitor.buckets}}
+ {{if x==0}}
Unable to locate Water Buckets
{{else}}
Water Buckets Location:
- ({^{:x}} / {^{:y}}) - {^{:dir}} - Water Level: {^{:status}}
+ ({{:x}} / {{:y}}) - {{:dir}} - Water Level: {{:status}}
{{/if}}
{{/for}}
- {^{for records.janitor.cleanbots}}
- {^{if x==0}}
+ {{for records.janitor.cleanbots}}
+ {{if x==0}}
Unable to locate Clean Bots
{{else}}
Clean Bots Location:
- ({^{:x}} / {^{:y}}) - {^{:dir}} - Status: {^{:status}}
+ ({{:x}} / {{:y}}) - {{:dir}} - Status: {{:status}}
{{/if}}
{{/for}}
- {^{for records.janitor.carts}}
- {^{if x==0}}
+ {{for records.janitor.carts}}
+ {{if x==0}}
Unable to locate Janitorial Cart
{{else}}
Janitorial cart Location:
-
({^{:x}} / {^{:y}}) - {^{:dir}} - Status: {^{:status}}
+
({{:x}} / {{:y}}) - {{:dir}} - Status: {{:status}}
{{/if}}
{{/for}}
diff --git a/nano/templates/telescience_console.tmpl b/nano/templates/telescience_console.tmpl
index ae92ed3e13..bd88dc4586 100644
--- a/nano/templates/telescience_console.tmpl
+++ b/nano/templates/telescience_console.tmpl
@@ -5,16 +5,16 @@ Used In File(s): \code\modules\telesci\telesci_computer.dm
Coordinates:
- {^{:~link('X: ' + coordx, 'gear', {'setx': 1})}}
- {^{:~link('Y: ' + coordy, 'gear', {'sety': 1})}}
- {^{:~link('Z: ' + coordz, 'gear', {'setz': 1})}}
+ {{:~link('X: ' + coordx, 'gear', {'setx': 1})}}
+ {{:~link('Y: ' + coordy, 'gear', {'sety': 1})}}
+ {{:~link('Z: ' + coordz, 'gear', {'setz': 1})}}
Controls:
- {^{:~link('Send', 'gear', {'send': 1}, null, (coordx != null && coordy != null && coordz != null) ? '' : 'disabled')}}
- {^{:~link('Receive', 'gear', {'receive': 1}, null, (coordx != null && coordy != null && coordz != null) ? '' : 'disabled')}}
- {^{:~link('Recalibrate', 'gear', {'recal': 1})}}
+ {{:~link('Send', 'gear', {'send': 1}, null, (coordx != null && coordy != null && coordz != null) ? '' : 'disabled')}}
+ {{:~link('Receive', 'gear', {'receive': 1}, null, (coordx != null && coordy != null && coordz != null) ? '' : 'disabled')}}
+ {{:~link('Recalibrate', 'gear', {'recal': 1})}}
diff --git a/nano/templates/uplink.tmpl b/nano/templates/uplink.tmpl
index 2f47c19635..34188899a5 100644
--- a/nano/templates/uplink.tmpl
+++ b/nano/templates/uplink.tmpl
@@ -3,15 +3,15 @@
Title: Syndicate Uplink, uses some javascript to change nanoUI up a bit.
Used In File(s): \code\game\objects\items\devices\uplinks.dm
-->
-{^{:~syndicateMode()}}
-
{^{:welcome}}
+{{:~syndicateMode()}}
+
{{:welcome}}
Functions:
- {^{:~link('Close', 'gear', {'lock' : "1"}, null, 'fixedLeft')}}
+ {{:~link('Close', 'gear', {'lock' : "1"}, null, 'fixedLeft')}}
@@ -20,20 +20,20 @@ Used In File(s): \code\game\objects\items\devices\uplinks.dm
Tele-Crystals:
- {^{:crystals}}
+ {{:crystals}}
Request items:
Each item costs a number of tele-crystals as indicated by the number following their name.
-{^{for nano_items}}
+{{for nano_items}}
-
{^{:Category}}
+ {{:Category}}
- {^{for items}}
+ {{for items}}
- {^{:~link( Name, 'gear', {'buy_item' : obj_path, 'cost' : Cost}, Cost > ~root.crystals ? 'disabled' : null, null)}} - {^{:Cost}}
+ {{:~link( Name, 'gear', {'buy_item' : obj_path, 'cost' : Cost}, Cost > ~root.crystals ? 'disabled' : null, null)}} - {{:Cost}}
{{/for}}
@@ -41,6 +41,6 @@ Used In File(s): \code\game\objects\items\devices\uplinks.dm
{{/for}}
- {^{:~link('Buy Random (??)' , 'gear', {'buy_item' : 'random'}, null, 'fixedLeftWidest')}}
+ {{:~link('Buy Random (??)' , 'gear', {'buy_item' : 'random'}, null, 'fixedLeftWidest')}}