@ JSHidaka: I am trying to change to GS cause I am beign forced to either way. What part hinted I wont be changing to Gearswap? I am tryin to find out if i can do things similiar to how i did them in spellcast. If not i need to figure something else out. Thanks for your help though.
@ Martel: Ah ok i was kinda wondering why inforeplacer was made but i guess that answers that.
Well for an example in spellcast on thf i had it set a variable "melee" as "treasurehunter" when ever i went idle. and then i had a macro that would change var "melee" to "haste" (or whatever for better dd ect...) and equip set "$melee". That way i wouldnt forget to TH a mob (assuming i didnt autotarget it and never went idle) and could switch to "kill faster" gear when i wanted (for example after i proc a mob in dynamis).
Or on monk or dancer i would change var "melee" to fandance/saberdance or counterstance/impetus/lolfootwork based on what Job ability i used that has gear that has to be worn for duration and i would have a set for each of those.
Also in a few of the example luas for jobs given with gearswap i see something like:
Code:
function self_command(command)
if command == 'toggle TP set' then
TP_ind = TP_ind +1
if TP_ind > #sets.TP.index then TP_ind = 1 end
send_command('@input /echo ----- TP Set changed to '..sets.TP.index[TP_ind]..' -----')
equip(sets.TP[sets.TP.index[TP_ind]])
elseif command == 'toggle Idle set' then
Idle_ind = Idle_ind +1
if Idle_ind > #sets.Idle.index then Idle_ind = 1 end
send_command('@input /echo ----- Idle Set changed to '..sets.Idle.index[Idle_ind]..' -----')
equip(sets.Idle[sets.Idle.index[Idle_ind]])
elseif command == 'equip TP set' then
equip_TP_set()
end
end
what command do i type to activate this (is that what that code is even for?)? I tried //toggle TP set and //gs toggle TP set and it didnt seem to work.