This applies to all jobs, but I'm most interested in DNC at the moment. As it is possible to select your macrobook based on your subjob or weapon
(example
Code
-- Select default macro book on initial load or subjob change.
function select_default_macro_book()
-- Default macro set/book
if player.sub_job == 'WAR' then
set_macro_page(3, 9)
elseif player.sub_job == 'NIN' then
set_macro_page(1, 9)
elseif player.sub_job == 'THF' then
set_macro_page(2, 9)
else
set_macro_page(1, 9)
end
endIs it possible to do this same thing based on whether you are in a party or soloing? I ask because the split second between choosing <stal> as the target and <me> as the target can make a big difference in battle.
