Melee Gearswap Isssue

Eorzea Time
 
 
 
Language: JP EN FR DE
users online
Forum » Windower » Spellcast Scripting » Red Mage » Melee gearswap isssue
Melee gearswap isssue
 Asura.Celoria
Offline
Server: Asura
Game: FFXI
user: celoria
Posts: 224
By Asura.Celoria 2014-11-03 03:48:27
Link | Quote | Reply
 
Hey everyone I am having issues when casting spells in melee, not really certain why but my weapon/sub are changing when engaged. This was a copy/paste that I adjusted, I don't really know what all I am doing so if you can help me in layman's terms that would be great.
 Asura.Psylo
Offline
Server: Asura
Game: FFXI
user: psylo
Posts: 446
By Asura.Psylo 2014-11-03 04:37:41
Link | Quote | Reply
 
add this maybe
Code
if stateField == 'OffenseMode' then
if newValue == 'Melee' then
disable('main','sub')



I don't have my gearswap @ work, so i will edit tonight
 Cerberus.Tidis
MSPaint Winner
Offline
Server: Cerberus
Game: FFXI
user: tidis
Posts: 3927
By Cerberus.Tidis 2014-11-03 04:51:23
Link | Quote | Reply
 
For a job like RDM, in my experience it may be better to just manually disable your main and sub weapons manually when needed with:
//gs disable main
//gs disable sub
 Asura.Celoria
Offline
Server: Asura
Game: FFXI
user: celoria
Posts: 224
By Asura.Celoria 2014-11-03 11:47:44
Link | Quote | Reply
 
Asura.Psylo said: »
add this maybe
Code
if stateField == 'OffenseMode' then
if newValue == 'Melee' then
disable('main','sub')



I don't have my gearswap @ work, so i will edit tonight


Where would I put that?