From b668a84e43213a68fa7aa1d0518d09ffe526ae5b Mon Sep 17 00:00:00 2001 From: frankiecas92 <59399792+frankiecas92@users.noreply.github.com> Date: Wed, 22 Jan 2020 20:24:28 -0800 Subject: [PATCH] create a setup for paladin apes paladin with action of check ammo --- scripts_jj/apes_city_-1/setup_paladin.json | 84 ++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 scripts_jj/apes_city_-1/setup_paladin.json diff --git a/scripts_jj/apes_city_-1/setup_paladin.json b/scripts_jj/apes_city_-1/setup_paladin.json new file mode 100644 index 0000000..87b4498 --- /dev/null +++ b/scripts_jj/apes_city_-1/setup_paladin.json @@ -0,0 +1,84 @@ +{ +"general": +{ + "loot_type":"auto", + "loot_priority":"first" +}, +"script_options": { + "hours_leave": [11], + "skill_train":"distance" +}, +"containers": +{ + "gold_bp":"Golden Backpack", + "loot_bp":"Red Backpack" +}, +"tools": +{ + "rope": {"name":"rope", "id":3003}, + "shovel": {"name":"light shovel", "id": 5710} +}, +"items": +{ + "mana potion": {"hotkey":"e", "id":268, "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 san":"q", + "utani hur":"v", + "exori con":"w", + "exevo con":"V" +}, +"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":85, "use_item":"mana potion", "priority":1} +], +"hunt_config": { + "cap_leave": 1, + "mana_name": "mana potion", + "take_mana": 110, + "mana_leave": 40, + "rune_name": "ultimate healing rune", + "take_rune": 20, + "rune_leave": 12, + "rune_name2": "avalanche rune", + "take_rune2": 250, + "rune_leave2": 40 +}, +"label_actions":[], +"persistent_actions": +[ + {"action":"haste", "interval":45, "args":["v"]}, + {"action":"drop_vials", "interval":40}, + {"action":"anti_paralyze", "interval":1, "args":["r"]}, + {"action":"eat_food", "interval":40, "args":{"hotkey":"f11"}}, + {"action":"refill_ammo", "interval":4, "use_in_battle":true}, + {"action":"check_ammo", "interval":4, "use_in_battle":true}, + {"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":"exori hur", "min_mana_percent":15, "priority":1, "cooldown":1, "monsters":["Sibang", "Merlkin", "Kongra"]}, + {"name":"exori san", "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"} +] +}