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
|
--Copyright (c) 2013, Banggugyangu
--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 <addon name> 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 <your name> 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.
_addon.name = 'PetSchool'
_addon.commands = {'petschool','ps'}
_addon.author = 'Banggugyangu'
_addon.version = '1.0.0'
windower.register_event('load',function ()
version = '1.0.0'
PetNuke = ' '
PetHeal = ' '
TP_Set = ' '
Idle_Set = ' '
options_load()
end)
--Function Designer: Byrth
function options_load()
local f = io.open(windower.addon_path..'data/settings.txt', "r")
if f == nil then
local g = io.open(windower.addon_path..'data/settings.txt', "w")
g:write('Release Date: 2:16 PM, 4-22-13\46\n')
g:write('Author Comment: This document is whitespace sensitive, which means that you need the same number of spaces between things as exist in this initial settings file\46\n')
g:write('Author Comment: It looks at the first two words separated by spaces and then takes anything as the value in question if the first two words are relevant\46\n')
g:write('Author Comment: If you ever mess it up so that it does not work, you can just delete it and PetSchool will regenerate it upon reload\46\n')
g:write('Author Comment: For the Gearset, simply place the name of the spellcast set for each setting exactly how it is spelled in spellcast.\n')
g:write('Author Comment: The design of the settings file is credited to Byrthnoth as well as the creation of the settings file.\n\n\n\n')
g:write('Fill In Settings Below:\n')
g:write('PetNuke Set: PetNuke\nPetHeal Set: PetHeal\nTP Set: TP\nIdle Set: Movement\n')
g:close()
print('Default settings file created')
windower.add_to_chat(17,'PetSchool created a settings file and loaded!')
windower.add_to_chat(17,'Please Modify the Settings file to fit your spellcast .XML file')
else
f:close()
for curline in io.lines(windower.addon_path..'data/settings.txt') do
local splat = split(curline,' ')
local cmd = ''
if splat[2] ~=nil then
cmd = (splat[1]..' '..splat[2]):gsub(':',''):lower()
end
if cmd == 'petnuke set' then
PetNuke = splat[3]
elseif cmd == 'petheal set' then
PetHeal = splat[3]
elseif cmd == 'tp set' then
TP_Set = splat[3]
elseif cmd == 'idle set' then
Idle_Set = splat[3]
end
end
windower.add_to_chat(17,'PetSchool read from a settings file and loaded!')
end
end
windower.register_event('action',function (act)
local pet = windower.ffxi.get_mob_by_target('pet')
if not pet then
return
end
local actor = act.actor_id
local category = act.category
local targets = act.targets
if actor == pet then
if category == 8 then
local actionTarget = windower.ffxi.get_mob_by_id(targets[1].id)
if actionTarget.is_npc == true then
windower.send_command('sc set ' .. PetNuke)
windower.add_to_chat(17, ' Pet Spellcast Started: Nuking')
elseif actionTarget.is_npc == false then
windower.send_command('sc set ' .. PetHeal)
windower.add_to_chat(17, ' Pet Spellcast Started: Curing/Buffing')
end
elseif category == 4 then
local status = windower.ffxi.get_player().status
if (status == 1) then
windower.send_command('sc set ' .. TP_Set)
windower.add_to_chat(17, ' Pet Spellcast Finished')
elseif (status == 0) then
windower.send_command('sc set ' .. Idle_Set)
windower.add_to_chat(17, ' Pet Spellcast Finished')
end
end
end
end)
--Function Author: Byrth
function split(msg, match)
local length = msg:len()
local splitarr = {}
local u = 1
while u <= length do
local nextanch = msg:find(match,u)
if nextanch ~= nil then
splitarr[#splitarr+1] = msg:sub(u,nextanch-match:len())
if nextanch~=length then
u = nextanch+match:len()
else
u = lengthlua
end
else
splitarr[#splitarr+1] = msg:sub(u,length)
u = length+1
end
end
return splitarr
end
--Function Designer: Byrth
windower.register_event('addon command',function (...)
local term = table.concat({...}, ' ')
local splitarr = split(term,' ')
if splitarr[1]:lower() == 'reload' then
options_load()
elseif splitarr[1]:lower() == 'help' then
windower.add_to_chat(17, 'PetSchool v'..version..'commands:')
windower.add_to_chat(17, '//ps [options]')
windower.add_to_chat(17, ' reload - Reloads settings')
windower.add_to_chat(17, ' help - Displays this help text')
end
end)
|