-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsetup_mage.json
85 lines (85 loc) · 2.9 KB
/
setup_mage.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
{
"general":
{
"loot_type":"manual",
"loot_priority":"first"
},
"script_options": {
"hours_leave": [9.5],
"duration_hours": 8,
"skill_train":"magic",
"use_soft_boots":false,
"imbuements":[],
"sort_deposit": {"alexander":6, "lailene":6, "tamoril":8, "rashid": 9, "green_djinn": 10}
},
"containers":
{
"gold_bp":"Shopping Bag",
"loot_bp":"Purple Backpack"
},
"tools":
{
"rope": {"name":"rope", "id": 3003}
},
"items":
{
"mana potion": {"hotkey":"e", "id":268, "use":"self"},
"avalanche rune": {"hotkey":"f9", "id":3161, "use":"crosshair"},
"stealth ring": {"hotkey":"V", "id":3049, "use":"equip"},
"brown mushroom": {"hotkey":"f11", "id":3725, "use":"use"}
},
"spells":
{
"exura gran":"r",
"exevo frigo hur":"1"
},
"healing":
[
{"type":"hp", "below_percent":75, "use_spell":"exura gran", "min_mana_percent":5, "priority":3},
{"type":"mp", "below_percent":80, "use_item":"mana potion", "priority":2}
],
"hunt_config": {
"cap_leave": 100,
"mana_name": "mana potion",
"take_mana": 100,
"mana_leave": 50,
"rune_name": "avalanche rune",
"take_rune": 80,
"rune_leave": 20
},
"label_actions":
[
{"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":"withdraw_ring", "action":"withdraw_item_from_depot_to_backpack", "args": {
"item_name":"stealth ring", "depot_num":3, "backpack_name":"Backpack", "amount":6, "stack":false}}
],
"persistent_actions": [
{"action":"drop_vials", "interval":60},
{"action":"anti_paralyze", "interval":1, "args":["r"]},
{"action":"eat_food", "interval":40, "args":{"hotkey":"f11"}},
{"action":"recover_full_mana", "interval":3, "args":["e"]},
{"action":"equip_item", "interval":2, "use_in_battle":true, "args":{"hotkey":"V", "amount":1, "selected_monsters":["Corym Skirmisher", "Corym Charlatan", "Stonerefiner"], "slot":"ring"}}
],
"target_monsters":
[
{"name":"Stonerefiner", "action":"distance", "min_dist":1, "max_dist":3, "loot":true}
],
"target_spells":
[
{"name":"exevo frigo hur", "min_mana_percent":20, "priority":3, "cooldown": 4, "min_monster_count":2},
{"name":"avalanche rune", "min_mana_percent":20, "priority":4, "cooldown": 2, "min_monster_count":3}
],
"loot":
[
{"name":"platinum coin", "action":"loot", "dest":"gold_bp"},
{"name":"platinum coins", "action":"loot", "dest":"gold_bp"},
{"name":"glob of acid slime", "action":"loot", "dest":"loot_bp"},
{"name":"rare earth", "action":"loot", "dest":"loot_bp"},
{"name":"poisonous slime", "action":"loot", "dest":"loot_bp"},
{"name":"half-digested stone", "action":"loot", "dest":"loot_bp"},
{"name":"half-digested stones", "action":"loot", "dest":"loot_bp"},
{"name":"stonerefiners skull", "action":"loot", "dest":"loot_bp"},
{"name":"rat cheese", "action":"use"}
]
}