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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
|
--[[
Copyright (c) 2013, Registry
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 autoinvite 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 Registry 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.
]]
require('luau')
_addon.name = 'AutoInvite'
_addon.author = 'Registry'
_addon.commands = {'autoinvite','ai'}
_addon.version = 1.0
_addon.language = 'english'
defaults = T{}
defaults.mode = 'whitelist'
defaults.whitelist = S{}
defaults.blacklist = S{}
defaults.keywords = S{}
defaults.tellback = 'on'
-- Statuses that stop you from sending invites.
statusblock = S{
'Dead', 'Event', 'Charmed'
}
-- Aliases to access correct modes based on supplied arguments.
aliases = T{
wlist = 'whitelist',
white = 'whitelist',
whitelist = 'whitelist',
blist = 'blacklist',
black = 'blacklist',
blacklist = 'blacklist',
key = 'keywords',
keyword = 'keywords',
keywords = 'keywords'
}
-- Aliases to access the add and item_to_remove routines.
addstrs = S{'a', 'add', '+'}
rmstrs = S{'r', 'rm', 'remove', '-'}
-- Aliases for tellback mode.
on = S{'on', 'yes', 'true'}
off = S{'off', 'no', 'false'}
modes = S{'whitelist', 'blacklist'}
-- Load settings from file
settings = config.load(defaults)
-- Check for keyword
windower.register_event('chat message', function(message, player, mode, is_gm)
local word = false
if mode == 3 then
for item in settings.keywords:it() do
if message:lower():match(item:lower()) then
word = true
break
end
end
-- if keyword is not found, return
if word == false then
return
end
if settings.mode == 'blacklist' then
if settings.blacklist:contains(player) then
return
else
try_invite(player)
end
elseif settings.mode == 'whitelist' then
if settings.whitelist:contains(player) then
try_invite(player)
end
end
end
end)
-- Attempts to send an invite
function try_invite(player)
if windower.ffxi.get_party().p5 then
notice(player.. 'cannot be invited - party is full')
if settings.tell_back == 'on' then
windower.send_command('input /t '..player..' Party is currently full.')
end
return
end
local status = res.statuses[windower.ffxi.get_player().status].english
if statusblock:contains(status) then
notice(player.. 'cannot be invited - you cannot send an invite at this time (' .. status .. ').')
if settings.tell_back == 'on' then
windower.send_command('input /t '..player..' An invite cannot be sent at this time (' .. status .. ').')
end
return
end
windower.send_command('input /pcmd add '..player)
end
-- Adds names/items to a given list type.
function add_item(mode, ...)
local names = S{...}
local doubles = names * settings[mode]
if not doubles:empty() then
if aliases[mode] == 'keywords' then
notice('Keyword':plural(doubles)..' '..doubles:format()..' already on keyword list.')
else
notice('User':plural(doubles)..' '..doubles:format()..' already on '..aliases[mode]..'.')
end
end
local new = names - settings[mode]
if not new:empty() then
settings[mode] = settings[mode] + new
log('Added '..new:format()..' to the '..aliases[mode]..'.')
end
end
-- Removes names/items from a given list type.
function remove_item(mode, ...)
local names = S{...}
local dummy = names - settings[mode]
if not dummy:empty() then
if aliases[mode] == 'keywords' then
notice('Keyword':plural(dummy)..' '..dummy:format()..' not found on keyword list.')
else
notice('User':plural(dummy)..' '..dummy:format()..' not found on '..aliases[mode]..'.')
end
end
local item_to_remove = names * settings[mode]
if not item_to_remove:empty() then
settings[mode] = settings[mode] - item_to_remove
log('Removed '..item_to_remove:format()..' from the '..aliases[mode]..'.')
end
end
windower.register_event('addon command', function(command, ...)
command = command and command:lower() or 'status'
local args = L{...}
-- Changes whitelist/blacklist mode
if command == 'mode' then
local mode = args[1] or 'status'
if aliases:keyset():contains(mode) then
settings.mode = aliases[mode]
log('Mode switched to '..settings.mode..'.')
elseif mode == 'status' then
log('Currently in '..settings.mode..' mode.')
else
error('Invalid mode:', args[1])
return
end
-- Turns tellback on or off
elseif command == 'tellback' then
status = args[1] or 'status'
status = string.lower(status)
if on:contains(status) then
settings.tellback = 'on'
log('Tellback turned on.')
elseif off:contains(status) then
settings.tellback = 'off'
log('Tellback turned off.')
elseif status == 'status' then
log('Tellback currently '..settings.tellback..'.')
else
error('Invalid status:', args[1])
return
end
elseif aliases:keyset():contains(command) then
mode = aliases[command]
names = args:slice(2):map(string.ucfirst..string.lower)
if args:empty() then
log(mode:ucfirst()..':', settings[mode]:format('csv'))
else
if addstrs:contains(args[1]) then
add_item(mode, names:unpack())
elseif rmstrs:contains(args[1]) then
remove_item(mode, names:unpack())
else
notice('Invalid operator specified. Specify add or remove.')
end
end
-- Print current settings status
elseif command == 'status' then
log('Mode:', settings.mode)
log('Tell Back:', settings.tellback)
log('Whitelist:', settings.whitelist:empty() and '(empty)' or settings.whitelist:format('csv'))
log('Blacklist:', settings.blacklist:empty() and '(empty)' or settings.blacklist:format('csv'))
log('Keywords:', settings.keywords:empty() and '(empty)' or settings.keywords:format('csv'))
-- Ignores (and prints a warning) if unknown command is passed.
else
warning('Unkown command \''..command..'\', ignored.')
end
config.save(settings)
end)
|