Hacknet-Extension-Tutorial


commit
433118d
parent
b7003a5
author
ChronoVert
date
2025-10-18 13:31:10 +0000 UTC
assets + [StartMission] 示例任务文件
1 files changed,  +28, -0
A Assets/Missions/StartMission.xml
+28, -0
 1@@ -0,0 +1,28 @@
 2+<?xml version="1.0" encoding="UTF-8"?>
 3+<mission id="exampleMission" activeCheck="true" shouldIgnoreSenderVerification="false">
 4+    <goals>
 5+        <goal type="getadmin" target="targetComputer"/>
 6+        <goal type="filedeletion" target="targetComputer" file="secret.txt" path="home"/>
 7+        <goal type="fileupload" target="targetComputer" file="evidence.txt" path="home" 
 8+               destTarget="playerComp" destPath="home"/>
 9+    </goals>
10+    
11+    <missionStart val="0">changeSong</missionStart>
12+    <missionEnd val="1">addRank</missionEnd>
13+    
14+    <nextMission IsSilent="false">NONE</nextMission>
15+    
16+    <posting title="数据清除任务" reqs="" requiredRank="2">
17+        需要入侵目标计算机并删除敏感文件
18+    </posting>
19+    
20+    <email>
21+        <sender>CSEC</sender>
22+        <subject>紧急任务:数据清除</subject>
23+        <body>我们需要你入侵目标系统并删除指定的敏感文件。完成后请上传证据文件。</body>
24+        <attachments>
25+            <link comp="targetComputer"/>
26+            <account comp="targetComputer" user="guest" pass="password123"/>
27+        </attachments>
28+    </email>
29+</mission>