-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsetup_rp.json
89 lines (89 loc) · 2.8 KB
/
setup_rp.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
87
88
89
{
"general":
{
"loot_type":"auto",
"loot_priority":"after"
},
"script_options": {
"hours_leave": [9.5],
"duration_hours": 8,
"skill_train":"distance"
},
"containers":
{
"gold_bp":"Blue Backpack",
"loot_bp":"Camouflage Backpack"
},
"tools":
{
"rope": {"name":"elvenhair rope", "id": 646},
"shovel": {"name":"light shovel", "id": 5710}
},
"items":
{
"mana potion": {"hotkey":"e", "id":268, "use":"self"},
"health potion": {"hotkey":"f", "id":266, "use":"self"},
"brown mushroom": {"hotkey":"f11", "id":3725, "use":"use"},
"platinum coin": {"hotkey":"f12", "id":3035, "use":"use"},
"stealth ring": {"hotkey":"f8", "id":3049, "use":"equip"},
"burst arrow": {"hotkey":"f10", "id":3449, "use":"equip"}
},
"spells":
{
"utani hur": "v",
"exura gran": "r",
"exori con": "q"
},
"healing":
[
{"type":"hp", "below_percent":80, "use_spell":"exura gran", "min_mana_percent":15, "priority":1},
{"type":"mp", "below_percent":35, "use_item":"mana potion", "priority":2},
{"type":"hp", "below_percent":35, "use_item":"health potion", "priority":3}
],
"hunt_config": {
"cap_leave": 2,
"mana_name": "mana potion",
"take_mana": 110,
"mana_leave": 60,
"health_name": "health potion",
"take_health": 20,
"health_leave": 14,
"ammo_name": "burst arrow",
"take_ammo": 300,
"ammo_leave": 100,
"hotkey_ammo": 21
},
"label_actions":
[
{"label":"withdraw_ring", "action":"withdraw_item_from_depot_to_backpack", "args": {
"item_name":"stealth ring", "depot_num":5, "backpack_name":"Shopping Bag", "amount":4, "stack":false}}
],
"persistent_actions": [
{"action":"haste", "interval":40},
{"action":"eat_food", "interval":40, "args":{"hotkey":"f11"}},
{"action":"drop_vials", "interval":60},
{"action":"equip_item", "interval":2, "use_in_battle":true, "args":{"hotkey":"f8", "selected_monsters":["Stonerefiner", "Corym Skirmisher", "Corym Charlatan"], "amount":1}},
{"action":"refill_ammo", "interval":3, "use_in_battle":true, "args":{"ammo_name":"burst arrow", "equip_slot":"ammunition", "min_amount":20}},
{"action":"stop_target_no_supplies", "interval": 4}
],
"target_monsters":
[
{"name":"Stonerefiner", "action":"follow", "loot":true}
],
"target_spells":
[
{"name":"exori con", "min_mana_percent":30, "priority":1, "cooldown":2,
"monsters":["Stonerefiner"]}
],
"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"}
]
}