
Originally Posted by
Malithar
Just now finally getting into GS. Messing around with a Geo.lua that was posted on ffxiah's forum, but not sure how to do something.
Been playing Geo/Dnc lately, and curious how I can differentiate the sets specific to my sub. No issues with weapons changing with /Rdm, as it's more than likely not engaged.
you can use the sub_job_change(new,old) function to do every thing you want
example:
Code:
function get_sets()
sets.Engaged.WHM = { }
end
function sub_job_change(new,old)
if new = "White Mage" then --its eather Whitemage or WHM im not sure
equip(sets.Engaged.WHM)
end
end
example 2:
Code:
function get_sets()
subjobtype = "WHM"
sets.Engaged.WHM = { }
sets.Engaged.DNC = { }
end
function sub_job_change(new,old)
if new = "White Mage" then --its eather Whitemage or WHM im not sure
subjobtype = "WHM"
elseif new = "Dancer" then --its eather Dancer or DNC im not sure
subjobtype = "DNC"
end
end
you would use for equiping sub job sets
equip(sets.Engaged[subjobtype])