├── README.md ├── autoTarget.gif ├── index.js ├── manifest.json └── module.json /README.md: -------------------------------------------------------------------------------- 1 | # Auto-Target 2 | Auto-Target and finish your skill.
3 | **Not work in duel mode**
4 |
5 | ![](autoTarget.gif)
6 | # Feature 7 | - Complete lockon skill type config PVP PVE GVG 8 | - Auto Heal (priest and mystic) 9 | - Auto Pulled if your friend in airborne or knockback (priest) 10 | - Auto Cleanse (mystic, work in raid) 11 | - Auto Plugue remove enemy buff (priest, remove valk ragnarok and zerk unleash) 12 | - Auto DPS 13 | - PVP/GVG Priority debuff skill to enemy healer first 14 | - PVP/GVG Auto put red arrow to enemy healer 15 | 16 | # Commands 17 | ``` 18 | - at on #enable 19 | - at off #disable 20 | - at reload #reload the config file 21 | ``` 22 | # Config.json 23 | ``` 24 | "enabled": true, #Enable / Disable this module 25 | "markTarget": { #Mark target follow class number 26 | "Alliance": { #read in Job / Class to get the number 27 | "0": [], #0 = red arrow 28 | "1": [], #1 = yellow arrow 29 | "2": [] #2 = blue arrow 30 | }, 31 | "Enemy": { 32 | "0": [ 33 | 6, 34 | 7 35 | ], 36 | "1": [], 37 | "2": [] 38 | } 39 | }, 40 | "skills": { 41 | "4": { #Job / Class 42 | "20": { #skill base id 43 | ... #read in skill info 44 | } 45 | } 46 | } 47 | ``` 48 | # Job / Class 49 | ``` 50 | 0 = warrior 7 = mystic 51 | 1 = lancer 8 = reaper 52 | 2 = slayer 9 = gunner 53 | 3 = berserker 10 = brawler 54 | 4 = sorcerer 11 = ninja 55 | 5 = archer 12 = valkyrie 56 | 6 = priest 57 | ``` 58 | # Skill Info 59 | ``` 60 | name: x #Skill name *can ignore this because it's only noted 61 | target: [] #Read in Target Tags* 62 | type: x #Read in Skill Type* 63 | dist: x #Max skill distance 64 | --- only lockon type --- 65 | maxTarget: x #Max target skill can lock-on 66 | lockSpeed: x #Speed for lock target *if ghost must increase this 67 | castSpeed: x #Cast speed for auto cast *if ghost must increase this 68 | autoCast: true/false #enable/disable auto cast 69 | --- lock class --- 70 | lockClass: [] #Lock-on target follow class 71 | *Used when "enemy-class" and "member-class" 72 | --- npc --- 73 | lockNpc: [] #Lock-on npc follow format 'Id_HuntingZone' 74 | *Used when "npc" 75 | --- buff --- 76 | inBuff: [] #Lock-on follow buff or ignore buff 77 | *Used when "enemy-inbuff", "enemy-notbuff", "member-inbuff" and "member-notbuff" 78 | --- heal --- 79 | hpCutoff: x #Lock-on member lower x percant 80 | *Used when "member-heal" 81 | ``` 82 | # Skill Type 83 | ``` 84 | lockon #yes, you know this is lock-on skill 85 | projectile #make projectile run to target *just some skill 86 | projectile-spoof #make projectile instant attack *just some skill 87 | ``` 88 | # Target Tags *Priority sort 89 | ``` 90 | boss #lock only Boss Type 91 | npc #lock only NPC 92 | npc-all #lock all npc near you *not recommend 93 | enemy-healer #lock only enemy healer 94 | enemy-class #lock only class in setting 95 | enemy-inbuff #lock only enemy got buff 96 | enemy-notbuff #lock only enemy not have buff 97 | enemy-all #lock all enemy near you 98 | member-healer #lock only alliance healer 99 | member-class #lock only alliance class in setting 100 | member-inbuff #lock only alliance got buff 101 | member-notbuff #lock only alliance not have buff 102 | member-stuck #lock only alliance in airbone or knockback 103 | member-clean #lock only alliance who has debuff 104 | member-heal #lock only alliance hp lower 105 | member-all #lock all alliance near you 106 | *Noted: 107 | enemy = PVP Only, member = party or raid. 108 | maxTarget is Follow your skill max target and glyph. 109 | Please decrease and increase maxTarget by your self it's not auto detect. 110 | ``` 111 | # Not working? 112 | if your skill look like try to spam and can't cast
113 | goto your SP or PR config and disable that skill you want to auto-cast from this moudule 114 | 115 | # Warning 116 | This module has more effect in PVP and PVE
117 | So i need to hide my code with encryption
118 | If you don't trust please leave from this
119 | P.S. YES IT'S FREE, THIS MODULE SLOW UPDATE BECAUSE I'M SO BUSY 120 | -------------------------------------------------------------------------------- /autoTarget.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fukki/auto-target/ca3e0735dd41a5084945bf92347e77494ffd7824/autoTarget.gif -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": { 3 | "index.js": "aa13b933a2e1088cfb1206f07f78d5a7fc31b665f78455a707934247f7b55f98" 4 | } 5 | } -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- 1 | { 2 | "disableAutoUpdate": false, 3 | "name": "Auto Target", 4 | "author": "Fukki", 5 | "description": "Auto Target and finish your skill.", 6 | "version": "Kappa :v", 7 | "options": { 8 | "niceName": "AT" 9 | }, 10 | "servers": ["https://raw.githubusercontent.com/Fukki/auto-target/master/"], 11 | "supportUrl": "https://github.com/Fukki/auto-target/issues/" 12 | } --------------------------------------------------------------------------------