-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup_mage.json
80 lines (80 loc) · 2.23 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
{
"general":
{
"loot_type":"auto",
"loot_priority":"first"
},
"script_options": {
"hours_leave": [9],
"skill_train":"magic"
},
"containers":
{
"gold_bp":"Blue Backpack",
"loot_bp":"Camouflage Backpack"
},
"tools":
{
"rope": {"name":"rope", "id":3003},
"shovel": {"name":"shovel", "id":3457}
},
"items":
{
"strong mana potion": {"hotkey":"e", "id":237, "use":"self"},
"brown mushroom": {"hotkey":"f11", "id":3725, "use":"use"},
"avalanche rune": {"hotkey":"9", "id":3161, "use":"crosshair"},
"ultimate healing rune": {"hotkey":"f2", "id":3160, "use":"self"}
},
"spells":
{
"exura gran":"r",
"exura":"x",
"exori frigo":"q",
"utani hur":"v",
"exevo frigo hur":"w"
},
"healing":
[
{"type":"hp", "below_percent":40, "use_item":"ultimate healing rune", "priority":4},
{"type":"hp", "below_percent":70, "use_spell":"exura gran", "min_mana_percent":10, "priority":3},
{"type":"hp", "below_percent":90, "use_spell":"exura", "min_mana_percent":10, "priority":2},
{"type":"mp", "below_percent":75, "use_item":"strong mana potion", "priority":1}
],
"hunt_config": {
"cap_leave": 1,
"mana_name": "strong mana potion",
"take_mana": 170,
"mana_leave": 45,
"rune_name": "ultimate healing rune",
"take_rune": 20,
"rune_leave": 12,
"rune_name2": "avalanche rune",
"take_rune2": 330,
"rune_leave2": 40
},
"label_actions":[],
"persistent_actions":
[
{"action":"haste", "interval":45, "args":["v"]},
{"action":"drop_vials", "interval":60},
{"action":"anti_paralyze", "interval":1, "args":["r"]},
{"action":"eat_food", "interval":40, "args":{"hotkey":"f11"}},
{"action":"lure_monsters", "interval":0.5, "args":[2]}
],
"target_monsters":
[
{"name":"Sibang", "action":"follow", "loot":true},
{"name":"Merlkin", "action":"follow", "loot":true},
{"name":"Kongra", "action":"follow", "loot":true}
],
"target_spells":
[
{"name":"avalanche rune", "min_mana_percent":15, "priority":4, "cooldown": 2, "min_monster_count":2},
{"name":"exevo frigo hur", "min_mana_percent":15, "priority":3, "cooldown": 2, "min_monster_count":2},
{"name":"exori frigo", "min_mana_percent":15, "priority":1, "cooldown":1, "monsters":["Sibang", "Merlkin", "Kongra"]}
],
"loot": [
{"name":"rope belt", "action":"loot", "dest":"loot_bp"},
{"name":"ape fur", "action":"loot", "dest":"loot_bp"}
]
}