Smn Melee Sc Help

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » Windower » Spellcast Scripting » Summoner » smn melee sc help
smn melee sc help
 Siren.Noxzema
Offline
サーバ: Siren
Game: FFXI
user: Noxzema
Posts: 228
By Siren.Noxzema 2014-06-12 05:25:21  
Ok... So, I was trying to setup my SC to be able to do my trials, and still be able to cast w/o switching weapons, and then switch back to melee gear. I eventually got it to work, but in doing so I broke my mage half somehow, it won't switch to my BP/cure etc sets anymore. Any suggestions?
 Cerberus.Flaminglegion
Offline
サーバ: Cerberus
Game: FFXI
Posts: 148
By Cerberus.Flaminglegion 2014-06-12 07:26:30  
All of your BP/cure etc. rules are in an else that requires you to not have Nirvana equipped and so will not parse whilst you do.

If you wanted to disable those gear slots whilst engaged move <disable slot="main|sub|range" /> into your if engaged rule, and take out the if main=Nirvana and the corresponding else rule lines. You will also need to move/edit the enable slot line if that's the route you take, could have if engaged disable, else enable.
 Siren.Noxzema
Offline
サーバ: Siren
Game: FFXI
user: Noxzema
Posts: 228
By Siren.Noxzema 2014-06-12 08:55:02  
Thanks, I think I got it working.
btw is it possible to have a rule saying something along the lines of if TP>50 disable main|sub|range?
 Cerberus.Flaminglegion
Offline
サーバ: Cerberus
Game: FFXI
Posts: 148
By Cerberus.Flaminglegion 2014-06-12 09:52:36  
Yeah, use %TP Spellcast Variables

Probably
Code
<if Advanced='(int)%TP>50'>
     <disable slot="main|sub|range" />
</if>
 Fenrir.Motenten
VIP
Offline
サーバ: Fenrir
Game: FFXI
user: Motenten
Posts: 764
By Fenrir.Motenten 2014-06-12 10:33:55  
Or the simpler
Code
<if tpgt="50">
    ...
</if>
[+]