Gearswap Support Thread

Eorzea Time
 
 
 
Language: JP EN FR DE
users online

Player doesn't exist in our DB!

Forum » Windower » Support » Gearswap Support Thread
Gearswap Support Thread
First Page 2 3 ... 17 18 19 ... 182 183 184
Offline
Posts: 157
By Azurea 2014-06-03 23:34:33
Link | Quote | Reply
 
Quick question (Hopefully), I'm messing with a DRG lua, and I'm attempting to make a TP gear equip rule for mage subs. I know in spellcast you could do something like "WHM|BLM|SCH" etc and list them that way, but is there an easy trick to making it work with gs? Something like player.sub_job == then a list of jobs? Thanks!
 Bismarck.Inference
Offline
Server: Bismarck
Game: FFXI
user: Inference
Posts: 417
By Bismarck.Inference 2014-06-03 23:54:42
Link | Quote | Reply
 
I'm not sure if there is an easy Sub1|Sub2 method for sure, however you could set up a table earlier :
Code
MagesSubs=S{'WHM','RDM','BLM',whatever you want}


then use the rule :
Code
if MagesSubs:contains(player.sub_job) then


and it would do what you're looking for.
[+]
 Leviathan.Arcon
VIP
Offline
Server: Leviathan
Game: FFXI
user: Zaphor
Posts: 666
By Leviathan.Arcon 2014-06-03 23:57:49
Link | Quote | Reply
 
Azurea said: »
Quick question (Hopefully), I'm messing with a DRG lua, and I'm attempting to make a TP gear equip rule for mage subs. I know in spellcast you could do something like "WHM|BLM|SCH" etc and list them that way, but is there an easy trick to making it work with gs? Something like player.sub_job == then a list of jobs? Thanks!

Personally I'd prefer Inference's suggestion, but you can do this as well:
Code
if player.sub_job:wcmatch('WHM|RDM|BLM') then
[+]
Offline
Posts: 138
By Elvyn87 2014-06-04 00:50:57
Link | Quote | Reply
 
Can anyone please tell me the command to make the swaps visible in the chat log? I remember seeing the command somewhere but can't find it. Thanks
 Fenrir.Motenten
VIP
Offline
Server: Fenrir
Game: FFXI
user: Motenten
Posts: 764
By Fenrir.Motenten 2014-06-04 01:46:36
Link | Quote | Reply
 
Elvyn87 said: »
Can anyone please tell me the command to make the swaps visible in the chat log? I remember seeing the command somewhere but can't find it. Thanks

//gs showswaps
[+]
 
Offline
Posts:
By 2014-06-04 03:06:56
 Undelete | Edit  | Link | Quote | Reply
 
Post deleted by User.
 Fenrir.Divinian
Offline
Server: Fenrir
Game: FFXI
user: Divinian
Posts: 354
By Fenrir.Divinian 2014-06-04 17:51:24
Link | Quote | Reply
 
I apologize if this has been said/asked already, but I am having some trouble with the '//gs export sets xml' command. It is leaving certain pieces of gear (both older and newer) out. It has been leaving Izizoeksi out for a while now (I manually add it) and is now not converting new gear sets that I make into an xml.

Is this happening for anyone else? Is there something I am doing wrong? Any advice? Thanks in advance.
 Fenrir.Divinian
Offline
Server: Fenrir
Game: FFXI
user: Divinian
Posts: 354
By Fenrir.Divinian 2014-06-04 17:53:06
Link | Quote | Reply
 
NVM, I was not '//gs reload'-ing after I made the new set.

Izizoeksi still does not convert however.
 Lakshmi.Byrth
VIP
Offline
Server: Lakshmi
Game: FFXI
user: Byrthnoth
Posts: 6184
By Lakshmi.Byrth 2014-06-04 18:02:57
Link | Quote | Reply
 
I've never had it miss an item. Are you sure that the items it's missing are actually part of the "sets" table?
Offline
Posts: 13
By GeneralRamuh 2014-06-07 03:07:43
Link | Quote | Reply
 
Anyone else having trouble getting Maneuvers to swap gear?
im using
https://github.com/Kinematics/GearSwap-Jobs/blob/master/PUP.lua
lua file with a PUP_Gear.lua that copy pasted their init gear sets section so only gear was changed no coding.

as far as i can tell everything else works fine... i engage... gear changes... i disengage ... gear changes... pet attacks and i stand there... gear changes... pet weaponskills... gear changes


i use a maneuver... nothing changes O_o

sets.precast.Maneuver = {neck="Buffoon's Collar",body="Cirque Farsetto +2",hands="Foire Dastanas"}

is the line in question
 Siren.Ulicaura
Offline
Server: Siren
Game: FFXI
user: danblend
Posts: 69
By Siren.Ulicaura 2014-06-07 05:13:53
Link | Quote | Reply
 
I'm just starting to try out Gearswap and I'm having a little trouble with my SCH midcasts.

I took the example file from the Gearswaps folders Snprphnx_SCH and changed the gear to fit my own, and for some reason it does the precast and aftercast sets but won't change to any midcast sets. Please help!
 Quetzalcoatl.Atropa
Offline
Server: Quetzalcoatl
Game: FFXI
Posts: 48
By Quetzalcoatl.Atropa 2014-06-07 05:52:04
Link | Quote | Reply
 
Quote:
Anyone else having trouble getting Maneuvers to swap gear?
im using
https://github.com/Kinematics/GearSwap-Jobs/blob/master/PUP.lua
lua file with a PUP_Gear.lua that copy pasted their init gear sets section so only gear was changed no coding.

as far as i can tell everything else works fine... i engage... gear changes... i disengage ... gear changes... pet attacks and i stand there... gear changes... pet weaponskills... gear changes


i use a maneuver... nothing changes O_o

sets.precast.Maneuver = {neck="Buffoon's Collar",body="Cirque Farsetto +2",hands="Foire Dastanas"}

is the line in question

I had the same thing happening to my PUP file too. Here's the fix:
sets.precast.JA['Maneuver'] = blah blah blah
That will do it.
 Asura.Fondue
Offline
Server: Asura
Game: FFXI
user: Caliber
Posts: 2446
By Asura.Fondue 2014-06-07 11:34:01
Link | Quote | Reply
 
Just started messing with moe's bard one on github and I keep getting this after 2 minutes or an hour of working fine, reloading it makes it go away for a little bit
Code
GearSwap has detected an error in the user function aftercast:
Windower4/addons/gearswap/libs/BRD.lua:507: table index is nil


http://pastebin.com/GmBDQjCp
 Fenrir.Motenten
VIP
Offline
Server: Fenrir
Game: FFXI
user: Motenten
Posts: 764
By Fenrir.Motenten 2014-06-07 12:12:26
Link | Quote | Reply
 
Quetzalcoatl.Atropa said: »
I had the same thing happening to my PUP file too. Here's the fix:
sets.precast.JA['Maneuver'] = blah blah blah
That will do it.

Bah, forgot to fix that in mine. Updated that.
 Fenrir.Motenten
VIP
Offline
Server: Fenrir
Game: FFXI
user: Motenten
Posts: 764
By Fenrir.Motenten 2014-06-07 12:15:59
Link | Quote | Reply
 
Asura.Fondue said: »
Just started messing with moe's bard one on github and I keep getting this after 2 minutes or an hour of working fine, reloading it makes it go away for a little bit
Code
GearSwap has detected an error in the user function aftercast:
Windower4/addons/gearswap/libs/BRD.lua:507: table index is nil


http://pastebin.com/GmBDQjCp

Sorry, stupid mistake there. Pushing a fix.

If you just want to adjust yours, change
Code
temp_timer_list[i]
to
Code
temp_timer_list[song_name]
And a few lines below change
Code
custom_timers[i]
to
Code
custom_timers[song_name]
.
[+]
 Asura.Nanabi
Offline
Server: Asura
Game: FFXI
user: Nanabi
Posts: 340
By Asura.Nanabi 2014-06-08 03:00:44
Link | Quote | Reply
 
This is my first attempt to a WHM's dummy lua
can someone tell me what I'm doing wrong? :(
Code
function get_sets()
 
        --Idle Sets--
 
        sets.Idle_Default = {   main="Owleyes",
                                                        sub="Genbu's shield",
                                                        ammo ="mana ampulla",
                                                        head="Nefer Khat",
                                                        neck="twilight torque",
                            ear1="Hearty Earring",
                            ear2="Ethereal Earring",
                            body="Heka's Kalasiris",
                            hands="Serpentes Cuffs",
                            ring1="Dark Ring",
                            ring2="Dark Ring",
                            back="Umbra Cape",
                            waist="Slipor Sash",
                            legs="Nares Trews",
                            feet="Serpentes Sabots"}
                                                       
    --Precast Sets--  
        set.precast = {}       
       
    sets.Precast_FastcastC = {  ammo ="Incantor Stone",
                                                                neck="Orison Locket",
                                                                ear1="Loquacious Earring",
                                                                body="Heka's Kalasiris",
                                                                hands="Magavan Mitts",
                                                                ring1="Prolix Ring",
                                                                back="Swith Cape +1",
                                                                waist="Witful Belt",
                                                                feet="Cure Clogs"}
                           
    sets.Precast_Fastcast = {   ammo="Incantor Stone",
                                                                head="Nares cap",
                                                                neck="Orison locket",
                                                                ear1="Loquacious Earring",
                                                                body="Anhur robe",
                                                                hands="Magavan Mitts",
                                                                ring2="Prolix Ring",
                                                                back="Swith Cape +1",
                                                                waist="Witful Belt",
                                                                legs="Orvail Pants",
                                                                feet="chelona boots"}
                                                               
    sets.Precast_HasteFC = {    ammo="Incantor Stone",
                                                                head="Nares cap",
                                                                neck="Orison locket",
                                                                ear1="Loquacious Earring",
                                                                body="Hedera Cotehardie",
                                                                hands="blessed Mitts +1",
                                                                ring2="Prolix Ring",
                                                                back="Swith Cape +1",
                                                                waist="Goading belt",
                                                                legs="Orvail Pants",
                                                                feet="chelona boots"}
        sets.Precast_PS = {     main="Beneficus",
                                                                sub="genbu's shield",
                                                                ammo ="Mana ampulla",
                                                                head="Orison cap +2",
                                                                neck="colossus's torque",
                                                                ear1="Brachyura earring",
                                                                ear2="Roundel Earring",
                                                                body="Anhur robe",
                                                                hands="Blessed Mitts +1",
                                                                ring1="Sirona's Ring",
                                                                ring2="Haoma's Ring",
                                                                back="Merciful cape",
                                                                waist="Olympus sash",
                                                                legs="Cleric's pantaloons +2",
                                                                feet="Orison Duckbills +2"}
                                                               
                                                       
    --Midcast Sets--  
 
       
        sets.Midcast_Curepot = {        main="Tefnut wand",
                                                                sub="genbu's shield",
                                                                ammo ="mana ampulla",
                                                                head="Orison cap +2",
                                                                neck="Phalaina Locket",
                                                                ear1="Orison Earring",
                                                                ear2="Roundel Earring",
                                                                body="Orison bliaud +2",
                                                                hands="Serpentes Cuffs",
                                                                ring1="Sirona's Ring",
                                                                ring2="Haoma's Ring",
                                                                back="Tempered cape",
                                                                waist="Cleric's belt",
                                                                legs="Orison Pantaloons +2",
                                                                feet="Serpentes Sabots"}
                                                               
        sets.Midcast_Proshell = {       main="Beneficus",
                                                                sub="genbu's shield",
                                                                ammo ="Mana ampulla",
                                                                head="Orison cap +2",
                                                                neck="colossus's torque",
                                                                ear1="Brachyura earring",
                                                                ear2="Roundel Earring",
                                                                body="Anhur robe",
                                                                hands="Blessed Mitts +1",
                                                                ring1="Sirona's Ring",
                                                                ring2="Haoma's Ring",
                                                                back="Merciful cape",
                                                                waist="Olympus sash",
                                                                legs="Cleric's pantaloons +2",
                                                                feet="Orison Duckbills +2"}
 
        sets.Midcast_ailment = {        main="Beneficus",
                                                                sub="genbu's shield",
                                                                ammo ="Incantor stone",
                                                                head="Orison cap +2",
                                                                neck="colossus's torque",
                                                                ear1="Brachyura earring",
                                                                ear2="Roundel Earring",
                                                                body="Anhur robe",
                                                                hands="Blessed Mitts +1",
                                                                ring1="prolix Ring",
                                                                ring2="Haoma's Ring",
                                                                back="Merciful cape",
                                                                waist="Witful belt",
                                                                legs="Cleric's pantaloons +2",
                                                                feet="Chelona boots"}                                                          
 
    sets.Midcast_Haste = {      ammo="Incantor Stone",
                                                                head="Nares cap",
                                                                neck="Orison locket",
                                                                ear1="Loquacious Earring",
                                                                body="Hedera Cotehardie",
                                                                hands="blessed Mitts +1",
                                                                ring2="Prolix Ring",
                                                                back="Swith Cape +1",
                                                                waist="Goading belt",
                                                                legs="Orvail Pants",
                                                                feet="chelona boots"}  
                                                               
        sets.Midcast_Erase = {  ammo ="Incantor Stone",
                                                        head="Zelus Tiara",
                                                        neck="orison Locket",
                                                        ear1="Loquacious Earring",
                                                        body="Hedera Cotehardie",
                                                        hands="blessed mitts +1",
                                                        ring1="Prolix Ring",
                                                        back="Swith Cape +1",
                                                        waist="goading belt",
                                                        legs="Orvail pants",
                                                        feet="chelona boots"}
 
        sets.Midcast = {}
        sets.Midcast.Stoneskin = set_combine(sets.Midcast.Proshell,{waist="siegel sash"})
                                                               
    --Resting Sets--  
 
end
 
 
        --Define Actions--
 
       
function precast(spell)
        if string.find(spell.english,'Cure') or string.find(spell.english,'Cura') then
                        equip(sets.Precast_FastcastC)
        elseif string.find(spell.english,'Baraera','Barblizzara','Barfira','Barstonra','Barthundra','Barwatera','Cursna','Poisona','Viruna','paralyna','Blindna','Silena','Stona') then
                        equip(sets.Precast_PS)
        elseif string.find(spell.name,'Haste') then
                        equip(sets.Precast_HasteFC)
        elseif spell.action_type == 'Magic' then
                equip(sets.Precast_Fastcast)
        end
end                                                    
 
function midcast(spell)
        if string.find(spell.english,'Cure') or string.find (spell.english, 'Cura') then
        equip(sets.Midcast_Curepot)
        elseif string.find(spell.english,'Protect') or string.find(spell.english,'Shell') or string.find(spell.english,'Baraera','Barblizzara','Barfira','Barstonra','Barthundra','Barwatera')then
                equip(sets.Midcast_Proshell)
        elseif string.find(spell.name,'Cursna','Poisona','Viruna','paralyna','Blindna','Silena','Stona') then
                equip(sets.midcast_ailment)
        elseif string.find(spell.name,'Erase','sacrifice') then
                equip(sets.midcast_Erase)
        elseif string.find(spell.name,'Haste','Esuna','Reraise','Reraise II','Reraise III','Raise','Raise II','Raise III','Arise') then
                equip(sets.midcast_Haste)
        elseif string.find(spell.name,'stoneskin') then
                equip(sets.midcast.Stoneskin)
        elseif spell.action_type == 'Magic' then
                equip(sets.midcast_Proshell)
        end
end
       
function aftercast(spell)
    if spell.action_type == 'Magic' then
        equip(sets.Idle_Default)
    end
end


it's not working at all other than cure and fastcast :(

EDIT for better look, also the error was:
..Nanabi_WHM.lua:163: bad argument #3 to 'find' (number expected, got string)
 Leviathan.Arcon
VIP
Offline
Server: Leviathan
Game: FFXI
user: Zaphor
Posts: 666
By Leviathan.Arcon 2014-06-08 08:55:28
Link | Quote | Reply
 
You're using string.find incorrectly. You can't search for more than one term. Use this instead to match full names:
Code
    elseif S{'Baraera','Barblizzara','Barfira','Barstonra','Barthundra','Barwatera','Cursna','Poisona','Viruna','Paralyna','Blindna','Silena','Stona'}:contains(spell.name) then


Also, you can (and should) replace every occurrence of string.find with string.match. You can also use it directly on the string itself. However, there are functions that are used precisely for beginning-of-string matching:
Code
    if spell.name:startswith('Cure') or spell.name:startswith('Cura') then


However, string.startswith (and string.match and string.find as well) should only be used if you look for sub-strings within a given string. If you do full-string matching (which you do in almost every case), you can just use == to compare string names:
Code
    elseif spell.name == 'Erase' or spell.name == 'Sacrifice' then
        equip(sets.midcast_Erase)
    elseif spell.name == 'Stoneskin' then
        equip(sets.micast_Stoneskin)
[+]
Offline
Posts: 117
By Mozhat 2014-06-08 10:34:13
Link | Quote | Reply
 
On SMN I see no LUA scripts with Magian Staffs Used. I for 1 still use these. I get 6 mp per tick back on light/dark/lightning days & 7 on the rest with avatars out and w/o favor.
I was told to load the lua scripts and try them out. I did so. At no time did the smn script put on the Magian staffs. So I did some checking. Found the [Mote-Mappings.lua] lines 38-42, but all my staffs are III not I-II.

elements.fastcast_staff_of = {['Light']='Arka I', ['Dark']='Xsaeta I', ['Fire']='Atar I', ['Ice']='Vourukasha I',
['Wind']='Vayuvata I', ['Earth']='Vishrava I', ['Lightning']='Apamajas I', ['Water']='Haoma I', ['Thunder']='Apamajas I'}

elements.recast_staff_of = {['Light']='Arka II', ['Dark']='Xsaeta II', ['Fire']='Atar II', ['Ice']='Vourukasha II',
['Wind']='Vayuvata II', ['Earth']='Vishrava II', ['Lightning']='Apamajas II', ['Water']='Haoma II', ['Thunder']='Apamajas II'}

So my ? is "Do I change these lines to III and omit the main staffs?"
sets.midcast.Pet.BloodPactWard = {main="Soulscourge",
sets.midcast.Pet.DebuffBloodPactWard = {main="Soulscourge",
sets.midcast.Pet.PhysicalBloodPactRage = {main="Soulscourge"
sets.midcast.Pet.MagicalBloodPactRage = {main="Eminent Pole",
etc.
And the other thing I see. I use a different gear set on Merit BPs. I don't see this in these scripts.
Please help me out here. Thank you!
 Fenrir.Motenten
VIP
Offline
Server: Fenrir
Game: FFXI
user: Motenten
Posts: 764
By Fenrir.Motenten 2014-06-08 21:00:37
Link | Quote | Reply
 
Two possible solutions:

1) Around line 325 of my smn.lua you get perpetuation gear. For example:
Code
	sets.perp.Carbuncle = {main="Bolelabunga",sub="Genbu's Shield", etc..


You can just set your magian staves in that area. eg:
Code
        sets.perp.Ifrit = {main="Atar III"}
        sets.perp.Garuda = {main="Vayuvata III"}
        etc.



2) Add proper perpetuance staff listings (which I'll be doing in the next mappings push), like so:
Code
elements.perpetuance_staff_of = {['Light']='Arka III', ['Dark']='Xsaeta III', ['Fire']='Atar III', ['Ice']='Vourukasha III',
	['Wind']='Vayuvata III', ['Earth']='Vishrava III', ['Lightning']='Apamajas III', ['Water']='Haoma III', ['Thunder']='Apamajas III'}


Then modify customize_idle_set() with the following:
Code
		if sets.perp[pet.name] then
			idleSet = set_combine(idleSet, sets.perp[pet.name])
		end
		local perp_staff = elements.perpetuance_staff_of[pet.element]
		if perp_staff and (player.inventory[perp_staff] or player.wardrobe[perp_staff]) then
			idleSet = set_combine(idleSet, {main=perp_staff,sub="Achaq Grip"})
		end


Replace the grip with whatever you want. The first condition, checking for pet.name, is already in there; that's just to show where the next bit of code goes.
Offline
Posts: 117
By Mozhat 2014-06-09 15:31:51
Link | Quote | Reply
 
Fenrir.Motenten said: »
Two possible solutions:

1) Around line 325 of my smn.lua you get perpetuation gear. For example:
Code
	sets.perp.Carbuncle = {main="Bolelabunga",sub="Genbu's Shield", etc..


You can just set your magian staves in that area. eg:
Code
        sets.perp.Ifrit = {main="Atar III"}
        sets.perp.Garuda = {main="Vayuvata III"}
        etc.



2) Add proper perpetuance staff listings (which I'll be doing in the next mappings push), like so:
Code
elements.perpetuance_staff_of = {['Light']='Arka III', ['Dark']='Xsaeta III', ['Fire']='Atar III', ['Ice']='Vourukasha III',
	['Wind']='Vayuvata III', ['Earth']='Vishrava III', ['Lightning']='Apamajas III', ['Water']='Haoma III', ['Thunder']='Apamajas III'}


Then modify customize_idle_set() with the following:
Code
		if sets.perp[pet.name] then
			idleSet = set_combine(idleSet, sets.perp[pet.name])
		end
		local perp_staff = elements.perpetuance_staff_of[pet.element]
		if perp_staff and (player.inventory[perp_staff] or player.wardrobe[perp_staff]) then
			idleSet = set_combine(idleSet, {main=perp_staff,sub="Achaq Grip"})
		end


Replace the grip with whatever you want. The first condition, checking for pet.name, is already in there; that's just to show where the next bit of code goes.

Thank you Mote! 2 other ?s I have.
1 What do I need to do to setup the Merit BP set?
2 I'm always subbing SCH and on reives I'm using Stone1 because with the XML using Stone2 will put on all the SMN magicBP gear instead.
What do I need to do to setup a elemental gear set?

Thanks again! That was a big help.
 
Offline
Posts:
By 2014-06-09 21:15:18
 Undelete | Edit  | Link | Quote | Reply
 
Post deleted by User.
 Leviathan.Trein
Offline
Server: Leviathan
Game: FFXI
user: Crappy
Posts: 6
By Leviathan.Trein 2014-06-10 04:23:29
Link | Quote | Reply
 
Got an error today after Maint.
Looks like a precast issue in mote's include:
Code
equipSet = (not sets.precast.RA:empty() and sets.precast.RA) or sets.precast.RangedAttack or sets.precast.RA


Thx!
 Quetzalcoatl.Orestes
Offline
Server: Quetzalcoatl
Game: FFXI
user: Orestes78
Posts: 430
By Quetzalcoatl.Orestes 2014-06-10 09:09:32
Link | Quote | Reply
 
Leviathan.Trein said: »
Got an error today after Maint.
Looks like a precast issue in mote's include:
Code
equipSet = (not sets.precast.RA:empty() and sets.precast.RA) or sets.precast.RangedAttack or sets.precast.RA


Thx!

If you need an intermediate solution, this will get it working.
Code
equipSet = sets.midcast.RA or sets.midcast.RangedAttack
 Fenrir.Motenten
VIP
Offline
Server: Fenrir
Game: FFXI
user: Motenten
Posts: 764
By Fenrir.Motenten 2014-06-10 09:27:32
Link | Quote | Reply
 
Mozhat said: »
Thank you Mote! 2 other ?s I have.
1 What do I need to do to setup the Merit BP set?
2 I'm always subbing SCH and on reives I'm using Stone1 because with the XML using Stone2 will put on all the SMN magicBP gear instead.
What do I need to do to setup a elemental gear set?

Thanks again! That was a big help.

For merit blood pacts:
1) Create a set: sets.midcast.Pet.MeritBloodPact
2) In the job_get_spell_map() function, add an extra check for the merit pacts and return 'MeritBloodPact' if true. You probably want to set up a set S{} in user_setup() as well, listing the pacts, to make the check easier.

For nukes:
Create a set: sets.midcast['Elemental Magic']

If you use the //fire2 shortcut, Shortcuts will likely try to convert that to the avatar pact if it matches the current avatar. Other tier 2 nukes should work fine. If you use /ma "Fire II" <t>, it should probably work even if it matches the pet (I think).
 Leviathan.Trein
Offline
Server: Leviathan
Game: FFXI
user: Crappy
Posts: 6
By Leviathan.Trein 2014-06-10 11:55:54
Link | Quote | Reply
 
Quetzalcoatl.Orestes said: »
Leviathan.Trein said: »
Got an error today after Maint.
Looks like a precast issue in mote's include:
Code
equipSet = (not sets.precast.RA:empty() and sets.precast.RA) or sets.precast.RangedAttack or sets.precast.RA


Thx!

If you need an intermediate solution, this will get it working.
Code
equipSet = sets.midcast.RA or sets.midcast.RangedAttack

Thx for your help, I will give it a try.
 Ragnarok.Navara
Offline
Server: Ragnarok
Game: FFXI
user: xff8x
Posts: 4
By Ragnarok.Navara 2014-06-11 12:33:06
Link | Quote | Reply
 
Okay, so I'm using Bokura's epic bard gearswap. It's perfect in every way, well... almost.

I was wondering how I can modify the gearswap so that I can manually change which instrument I want to use via an in-game macro. I say this because the gearswap is programmed to only use daurdabla to put up dummy songs. This is perfect, but sometimes fights can be tight, and getting up the 3rd + 4th song after a debuff needs to be quick. I know these songs wont be as potent as putting up dummy songs and then immediately overwriting them with ghorn, but as I say.. sometimes just getting the 3rd and 4th song up is enough until it's safe...

So, I created a very simplistic macro in-game: equip range "Daurdabla" but it doesn't seem to work... I've even tried removing the line: range="Gjallarhorn", from the sets.Midcast.WindBuff .. but now my character plays songs without an instrument...

I'm a total nuub at gearswap so far, so any help would be appreciated! :X
Offline
Posts: 117
By Mozhat 2014-06-11 19:44:44
Link | Quote | Reply
 
First off,
Mote
Thank You So Much for your SMN GS Script and Thank you for helping with all my Qs.
I have SMN almost completed.

Is there a way to equip the Sacrifice Torque when you are asleep with a avatar out?

I use the same kind of method on my PLD using the Berserker's Torque. Doing PLD GS next. SMN seems to be the hardest to learn.

Sorry for all these Qs. This is all new to me.
Thank you!
 Fenrir.Motenten
VIP
Offline
Server: Fenrir
Game: FFXI
user: Motenten
Posts: 764
By Fenrir.Motenten 2014-06-11 20:01:11
Link | Quote | Reply
 
On page 11 of this thread: http://www.ffxiah.com/forum/topic/41580/gearswap/11/#2625288
 Asura.Shystie
Offline
Server: Asura
Game: FFXI
user: Shystie
Posts: 41
By Asura.Shystie 2014-06-12 04:06:06
Link | Quote | Reply
 
Edit: Further testing coming.
First Page 2 3 ... 17 18 19 ... 182 183 184