forked from lorand-ffxi/HealBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHB_Offense.lua
140 lines (119 loc) · 5.28 KB
/
HB_Offense.lua
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
--==============================================================================
--[[
Author: Ragnarok.Lorand
HealBot offense handling functions
--]]
--==============================================================================
local offense = {
immunities=lor_settings.load('data/mob_immunities.lua'),
assist={active = false, engage = false},
debuffs={}, ignored={}, mobs={}, dispel={},
debuffing_active = true
}
function offense.register_assistee(assistee_name)
local pname = utils.getPlayerName(assistee_name)
if (pname ~= nil) then
offense.assist.name = pname
offense.assist.active = true
atcf('Now assisting %s.', pname)
else
atcf(123,'Error: Invalid name provided as an assist target: %s', assistee_name)
end
end
function offense.assistee_and_target()
if offense.assist.active and (offense.assist.name ~= nil) then
local partner = windower.ffxi.get_mob_by_name(offense.assist.name)
if partner then
local targ = windower.ffxi.get_mob_by_index(partner.target_index)
if (targ ~= nil) and targ.is_npc then
return partner, targ
end
end
end
return nil
end
function offense.cleanup()
local mob_ids = table.keys(offense.mobs)
if mob_ids then
for _,id in pairs(mob_ids) do
local mob = windower.ffxi.get_mob_by_id(id)
if mob == nil or mob.hpp == 0 then
offense.mobs[id] = nil
end
end
end
end
function offense.maintain_debuff(spell, cancel)
local nspell = utils.normalize_action(spell, 'spells')
if not nspell then
atcfs(123, '[offense.maintain_debuff] Invalid spell: %s', spell)
return
end
local debuff_id = spell_debuff_idmap[nspell.id]
if debuff_id == nil then
atcfs(123, 'Unable to find debuff for spell: %s', spell)
return
end
local debuff = res.buffs[debuff_id]
if cancel then
offense.debuffs[debuff.id] = nil
else
offense.debuffs[debuff.id] = {spell = nspell, res = debuff}
end
local msg = cancel and 'no longer ' or ''
atcf('Will %smaintain debuff on mobs: %s', msg, nspell.en)
end
function offense.normalized_mob(mob)
if istable(mob) then
return mob
elseif isnum(mob) then
return windower.ffxi.get_mob_by_id(mob)
end
return mob
end
function offense.register_immunity(mob, debuff)
offense.immunities[mob.name] = S(offense.immunities[mob.name]) or S{}
offense.immunities[mob.name]:add(debuff.id)
offense.immunities:save()
end
function offense.registerMob(mob, forget)
mob = offense.normalized_mob(mob)
if not mob then return end
if forget then
offense.mobs[mob.id] = nil
atcd(('Forgetting mob: %s [%s]'):format(mob.name, mob.id))
else
if offense.mobs[mob.id] ~= nil then
atcd(('Attempted to register already known mob: %s[%s]'):format(mob.name, mob.id))
else
atcd(('Registering new mob: %s[%s]'):format(mob.name, mob.id))
end
offense.mobs[mob.id] = offense.mobs[mob.id] or {}
end
end
function offense.getDebuffQueue(player, target)
local dbq = ActionQueue.new()
if offense.debuffing_active then
offense.mobs[target.id] = offense.mobs[target.id] or {}
for id,debuff in pairs(offense.debuffs) do
if offense.mobs[target.id][id] == nil then
if not (offense.immunities[target.name] and offense.immunities[target.name][id]) then
dbq:enqueue('debuff_mob', debuff.spell, target.name, debuff.res, (' (%s)'):format(debuff.spell.en))
end
end
end
end
return dbq:getQueue()
end
return offense
--==============================================================================
--[[
Copyright © 2016, Lorand
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of ffxiHealer nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Lorand BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--]]
--==============================================================================