Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Commit 8ea9c1b

Browse files
committed
minor additions
1 parent 3d2c719 commit 8ea9c1b

File tree

2 files changed

+118
-1
lines changed

2 files changed

+118
-1
lines changed

ToDo.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
Bugs / Outstanding
22
===================
33

4-
4+
Look to use yaml in rcon integration configs as they may be nicer to read and may support the action commands and passing JSON to Factorio nicer.
5+
Should I just ignore any event without an ID string? Came up ages ago during Will's playthrough. But not enough of an issue to be done at the time.
6+
If you close the GUI when internet is dead after being connected via RCOn the python window never closes. Gues its waiting for something to close.
7+
Change profile loading to not error on startup for bad profiles, but error on trying to start them.
58

69

710
Ideas
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{
2+
"name": "ColonelWill - Prime Rocket Repair",
3+
"description": "Wills Rocket Goal playthrough with Prime shopping 2020-02-15",
4+
"reactions": [
5+
{
6+
"valueType": "money",
7+
"filteredActions": [
8+
{
9+
"condition": "[VALUE] >= 1 and [VALUE] < 5",
10+
"manipulator": "[VALUE] / 5",
11+
"action": "/rocket_target_increase_goal [CALCVALUE] \"[BESTNAME]\""
12+
},
13+
{
14+
"condition": "[VALUE] >= 1 and [VALUE] < 5",
15+
"manipulator": "[VALUE] * 100",
16+
"action": "/item_delivery_pod-call_crash_ship \"ColonelWill\" 150 \"tiny\" {\"coin\":[CALCVALUE]}"
17+
},
18+
{
19+
"condition": "[VALUE] >= 5 and [VALUE] < 10",
20+
"manipulator": "[VALUE] / 5",
21+
"action": "/rocket_target_increase_goal [CALCVALUE] \"[BESTNAME]\""
22+
},
23+
{
24+
"condition": "[VALUE] >= 5 and [VALUE] < 10",
25+
"manipulator": "[VALUE] * 100",
26+
"action": "/item_delivery_pod-call_crash_ship \"ColonelWill\" 100 \"small\" {\"coin\":[CALCVALUE]}"
27+
},
28+
{
29+
"condition": "[VALUE] >= 10 and [VALUE] < 25",
30+
"manipulator": "[VALUE] / 3",
31+
"action": "/rocket_target_increase_goal [CALCVALUE] \"[BESTNAME]\""
32+
},
33+
{
34+
"condition": "[VALUE] >= 10 and [VALUE] < 25",
35+
"manipulator": "[VALUE] * 100",
36+
"action": "/item_delivery_pod-call_crash_ship \"ColonelWill\" 75 \"medium\" {\"coin\":[CALCVALUE]}"
37+
},
38+
{
39+
"condition": "[VALUE] >= 25 and [VALUE] < 50",
40+
"manipulator": "[VALUE] / 2.5",
41+
"action": "/rocket_target_increase_goal [CALCVALUE] \"[BESTNAME]\""
42+
},
43+
{
44+
"condition": "[VALUE] >= 25 and [VALUE] < 50",
45+
"manipulator": "[VALUE] * 100",
46+
"action": "/item_delivery_pod-call_crash_ship \"ColonelWill\" 50 \"large\" {\"coin\":[CALCVALUE]}"
47+
},
48+
{
49+
"condition": "[VALUE] >= 50 and [VALUE] < 100",
50+
"manipulator": "[VALUE] / 2",
51+
"action": "/rocket_target_increase_goal [CALCVALUE] \"[BESTNAME]\""
52+
},
53+
{
54+
"condition": "[VALUE] >= 50 and [VALUE] < 100",
55+
"manipulator": "[VALUE] * 100",
56+
"action": "/item_delivery_pod-call_crash_ship \"ColonelWill\" 25 \"modular-auto-[VALUE]\" {\"coin\":[CALCVALUE]}"
57+
},
58+
{
59+
"condition": "[VALUE] >= 100 and [VALUE] < 200",
60+
"manipulator": "[VALUE] / 1",
61+
"action": "/rocket_target_increase_goal [CALCVALUE] \"[BESTNAME]\""
62+
},
63+
{
64+
"condition": "[VALUE] >= 100 and [VALUE] < 200",
65+
"manipulator": "[VALUE] * 100",
66+
"action": "/item_delivery_pod-call_crash_ship \"ColonelWill\" 0 \"modular-auto-[VALUE]\" {\"coin\":[CALCVALUE]}"
67+
},
68+
{
69+
"condition": "[VALUE] >= 200",
70+
"manipulator": "[VALUE] / 0.8",
71+
"action": "/rocket_target_increase_goal [CALCVALUE] \"[BESTNAME]\""
72+
},
73+
{
74+
"condition": "[VALUE] >= 200",
75+
"manipulator": "[VALUE] * 100",
76+
"action": "/item_delivery_pod-call_crash_ship \"ColonelWill\" 0 \"modular-auto-[VALUE]\" {\"coin\":[CALCVALUE]}"
77+
},
78+
{
79+
"condition": "[VALUE] < 1",
80+
"manipulator": "",
81+
"action": "[NOTHING]"
82+
}
83+
]
84+
},
85+
{
86+
"valueType": "follow",
87+
"filteredActions": [
88+
{
89+
"condition": "[ALL]",
90+
"manipulator": "",
91+
"action": "/rocket_target_increase_goal 0.5 \"[BESTNAME]\""
92+
},
93+
{
94+
"condition": "[ALL]",
95+
"manipulator": "",
96+
"action": "/item_delivery_pod-call_crash_ship \"ColonelWill\" 150 \"tiny\" {\"coin\":100}"
97+
}
98+
]
99+
},
100+
{
101+
"valueType": "viewer",
102+
"filteredActions": [
103+
{
104+
"condition": "[ALL]",
105+
"manipulator": "",
106+
"action": "[NOTHING]"
107+
}
108+
]
109+
}
110+
],
111+
"options": {
112+
"twitchMysterSubGiftMode": "donator"
113+
}
114+
}

0 commit comments

Comments
 (0)