-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.txt
74 lines (68 loc) · 1.97 KB
/
todo.txt
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
-Look at updating special missions with seperate classes
-Verify Index and Arena works
First Pass
-Toggle Special missions X
-Toggle mission Zones X
-Toggle mission Types X
-Hot reloading and recreate random list
On save settings X
On command request -
-Fetch data every X minutes ( defaults to 200 seconds ) X
Future thoughts:
-Settings changer commands
-Alert when any type of mission is about to rotate
-Level capping?
-Progress mode (track the casters progress)
-Event support
-Warframe info cmds
-Weapon info cmds
-News link cmds
API blocked:
-Nightmare missions
Add to settings class and settingsOptions
"togNightmare": {
"type": "checkbox",
"value": true,
"label": "Toggle nightmare missions.",
"tooltip": "Toggles all nightmaremissions.",
"group": "Randomizer:Special Settings"
},
"nightmareWeight": {
"type": "numberbox",
"value": 1,
"label": "Nightmare Mission Weighting",
"tooltip": "",
"group": "Randomizer:Special Settings"
},
-Kuva farm missions
Add to settings class and settingsOptions
"togKuvafarm": {
"type": "checkbox",
"value": true,
"label": "Toggle kuva farm missions.",
"tooltip": "Toggles all kuva siphons and flood missions.",
"group": "Randomizer:Special Settings"
},
"kuvafarmWeight": {
"type": "numberbox",
"value": 1,
"label": "Kuva farm Mission Weighting",
"tooltip": "",
"group": "Randomizer:Special Settings"
},
-Syndicate missions
Add to settings class and settingsOptions
"togSyndicate": {
"type": "checkbox",
"value": true,
"label": "Toggle syndicate missions.",
"tooltip": "Toggles all syndicate missions.",
"group": "Randomizer:Special Settings"
},
"syndicateWeight": {
"type": "numberbox",
"value": 1,
"label": "Syndicate Mission Weighting",
"tooltip": "",
"group": "Randomizer:Special Settings"
},