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
141
142
143
144
145
146
147
148
149
150
151
152
|
_addon.name = 'TParty'
_addon.author = 'Cliff'
_addon.version = '2.0.1.2'
require('sets')
require('functions')
texts = require('texts')
config = require('config')
defaults = {}
defaults.ShowTargetHPPercent = true
defaults.ShowPartyTP = true
settings = config.load(defaults)
hpp = texts.new('${hpp}', {
pos = {
x = -104,
},
bg = {
visible = false,
},
flags = {
right = true,
bottom = true,
bold = true,
draggable = false,
italic = true,
},
text = {
size = 10,
alpha = 185,
red = 115,
green = 166,
blue = 213,
},
})
tp = T{}
do
local x_pos = windower.get_windower_settings().ui_x_res - 118
for i = 0, 17 do
local party = (i / 6):floor() + 1
local key = {'p%i', 'a1%i', 'a2%i'}[party]:format(i % 6)
local pos_base = {-34, -389, -288}
tp[key] = texts.new('${tp}', {
pos = {
x = x_pos,
y = pos_base[party] + 16 * (i % 6)
},
bg = {
visible = false,
},
flags = {
right = false,
bottom = true,
bold = true,
draggable = false,
italic = true,
},
text = {
size = i < 6 and 10 or 8,
alpha = 185,
red = 255,
green = 255,
blue = 255,
},
})
end
end
hpp_y_pos = {}
for i = 1, 6 do
hpp_y_pos[i] = -51 - 20 * i
end
key_indices = {
p0 = 1,
p1 = 2,
p2 = 3,
p3 = 4,
p4 = 5,
p5 = 6,
}
tp_y_pos = {}
for i = 1, 6 do
tp_y_pos[i] = -34 - 20 * (6 - i)
end
windower.register_event('prerender', function()
-- HP % text
if settings.ShowTargetHPPercent then
local mob = windower.ffxi.get_mob_by_target('st') or windower.ffxi.get_mob_by_target('t')
if mob then
local party_info = windower.ffxi.get_party_info()
-- Adjust position for party member count
hpp:pos_y(hpp_y_pos[party_info.party1_count])
hpp:update(mob)
hpp:show()
else
hpp:hide()
end
else
hpp:hide()
end
-- Alliance TP texts
if settings.ShowPartyTP then
local party = T(windower.ffxi.get_party())
local zone = windower.ffxi.get_info().zone
for text, key in tp:it() do
local member = party[key]
if member and member.zone == zone then
-- Adjust position for party member count
if key:startswith('p') then
text:pos_y(tp_y_pos[key_indices[key] + 6 - party.party1_count])
end
-- Color TP display green when TP > 1000
if member.tp >= 1000 then
text:color(0, 255, 0)
else
text:color(255, 255, 255)
end
text:update(member)
text:show()
else
text:hide()
end
end
end
end)
--[[
Copyright © 2014-2015, Windower
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 Windower 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 Windower 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.
]]
|