-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsetup_ek_stealth.json
86 lines (86 loc) · 3.21 KB
/
setup_ek_stealth.json
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
75
76
77
78
79
80
81
82
83
84
85
86
{
"general":
{
"loot_type":"manual",
"anti_trap":"weapon"
},
"script_options": {
"hours_leave": [9.5],
"lower_level": true,
"upper_level": true
},
"containers":
{
"gold_bp":"Shopping Bag",
"loot_bp":"Purple Backpack"
},
"tools": {},
"items":
{
"mana potion": {"hotkey":"f4", "use":"self"},
"stealth ring": {"hotkey":"V", "use":"equip"}
},
"spells": {
"exura ico":"f1"
},
"healing":
[
{"type":"hp", "below_percent":85, "use_spell":"exura ico", "min_mana_percent":20, "priority":2},
{"type":"mp", "below_percent":30, "use_item":"mana potion", "priority":1}
],
"hunt_config": {
"cap_leave": 20,
"mana_name": "mana potion",
"take_mana": 50,
"mana_leave": 20
},
"label_actions":
[
{"label":"withdraw_ring", "action":"withdraw_item_from_depot_to_backpack", "args": {
"item_name":"stealth ring", "depot_num":3, "backpack_name":"Backpack", "amount":6, "stack":false}},
{"label":"check_stealth", "action":"conditional_jump_item_count_below", "args": {"item_name":"stealth ring", "amount":4, "label_jump":"train"}},
{"label":"check_low_stealth", "action":"conditional_jump_item_count_below", "args": {"item_name":"stealth ring", "amount":2, "label_jump":"leave"}},
{"label":"leave", "action":"equip_item", "args":{"hotkey":"V", "amount":100}}
],
"persistent_actions":
[
{"action":"drop_vials", "min_interval":60, "max_interval":120},
{"action":"anti_paralyze", "interval":1, "args":["f1"]},
{"action":"cast_spell", "min_interval":20, "max_interval":50, "args":{"hotkey":"f1", "min_mp":90}},
{"alias":"stealth_persistent", "action":"equip_item", "min_interval":1, "max_interval":3, "use_in_battle":true,
"args":{"hotkey":"V", "amount":1, "selected_monsters":["Forest Fury", "Wilting Leaf Golem"], "slot":"ring", "unequip":false}}
],
"target_monsters":
[
{"name":"Leaf Golem", "action":"follow", "loot":true},
{"name":"Forest Fury", "action":"follow", "loot":true},
{"name":"Poacher", "action":"follow", "loot":true},
{"name":"Dryad", "action":"follow", "loot":true},
{"name":"Goblin", "action":"follow", "loot":true}
],
"target_spells": [],
"loot":
[
{"name":"gold coin", "action":"loot", "dest":"gold_bp"},
{"name":"gold coins", "action":"loot", "dest":"gold_bp"},
{"name":"health potion", "action":"loot", "dest":"loot_bp"},
{"name":"small emerald", "action":"loot", "dest":"loot_bp"},
{"name":"small topaz", "action":"loot", "dest":"loot_bp"},
{"name":"small amethyst", "action":"loot", "dest":"loot_bp"},
{"name":"seeds", "action":"loot", "dest":"loot_bp"},
{"name":"dowser", "action":"loot", "dest":"loot_bp"},
{"name":"fir cone", "action":"loot", "dest":"loot_bp"},
{"name":"elven hoof", "action":"loot", "dest":"loot_bp"},
{"name":"elvish bow", "action":"loot", "dest":"loot_bp"},
{"name":"venison", "action":"loot", "dest":"loot_bp"},
{"name":"carrot on a stick", "action":"loot", "dest":"loot_bp"},
{"name":"coconut_shoes", "action":"loot", "dest":"loot_bp"},
{"name":"flower dress", "action":"loot", "dest":"loot_bp"},
{"name":"flower wreath", "action":"loot", "dest":"loot_bp"},
{"name":"leaf legs", "action":"loot", "dest":"loot_bp"},
{"name":"mana potion", "action":"loot", "dest":"loot_bp"},
{"name":"white mushroom", "action":"use"},
{"name":"meat", "action":"use"},
{"name":"ham", "action":"use"}
]
}