Hey Sech found something that could make what you want to do "easier", but we might need help from the Windower Dev( Arcon, Byrth... and others

)
I was messing w/ the res. and went to spell.lua and modified the minuet line to this:
Code:
[394] = {id=394,en="Valor Minuet",ja="猛者のメヌエット",de="Mut-Menuett",fr="Menuet vaillant",cast_time=32,element=0,icon_id=-1,icon_id_nq=32,levels={[10]=3},mp_cost=0,prefix="/song",range=12,recast=96,recast_id=796,requirements=0,skill=40,targets=1,type="BardSong", group="Minuet"},
did add whats in bold (
group="Minuet")
then went to my brd.lua and in precast did add
Code:
add_to_chat(100,'=================> Group:'..spell.group)
and this are the results:
http://i93.photobucket.com/albums/l5...529_141244.png
then of course for w/e other spell that doesnt have group will give me an error so did change the code to this
Code:
if spell.group then
add_to_chat(100,'=================> Group:'..spell.group)
end
so for the gear set could do somethign like
Code:
if spell.group and sets.precast[spell.group] then
equip(sets.precast[spell.group])
end
now why the help of the development team?... coz yea we can edit the res and make it work... but whenever they update the resource our change will be gone, so is more likely if they would like to add another option to brd songs (and probably others JA/Spells for others job) to group them
another example could be the Cure spells, We know they are Healing Skills, Light Magic, but cant difference them from Curaga's for example...