-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvents.xml
29 lines (29 loc) · 1.19 KB
/
Events.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<Randomevents>
<EventPrefabs>
<ScriptedEvent identifier="Test campaign metadata" commonness="0">
<CheckDataAction identifier="CurrentLocationIrradiation" condition="gt 0">
<Success>
<CheckDataAction identifier="CurrentLocationIrradiation" condition="gt 100">
<Success>
<ConversationAction text="CurrentLocationIrradiation gt 100" endconversation="true" />
</Success>
<Failure>
<ConversationAction text="CurrentLocationIrradiation is between 0 and 100" endconversation="true" />
</Failure>
</CheckDataAction>
</Success>
<Failure>
<CheckDataAction identifier="CurrentLocationIrradiation" condition="gt -100">
<Success>
<ConversationAction text="CurrentLocationIrradiation is between -100 and 0" endconversation="true" />
</Success>
<Failure>
<ConversationAction text="CurrentLocationIrradiation lt -100" endconversation="true" />
</Failure>
</CheckDataAction>
</Failure>
</CheckDataAction>
</ScriptedEvent>
</EventPrefabs>
</Randomevents>