Smn Melee Sc Help

Language: JP EN DE FR
2010-09-08
New Items
users online
Forum » Windower » Spellcast Scripting » Summoner » smn melee sc help
smn melee sc help
 Siren.Noxzema
Offline
Server: Siren
Game: FFXI
user: Noxzema
Posts: 228
By Siren.Noxzema 2014-06-12 05:25:21
Link | Quote | Reply
 
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
Server: Cerberus
Game: FFXI
Posts: 148
By Cerberus.Flaminglegion 2014-06-12 07:26:30
Link | Quote | Reply
 
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
Server: Siren
Game: FFXI
user: Noxzema
Posts: 228
By Siren.Noxzema 2014-06-12 08:55:02
Link | Quote | Reply
 
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
Server: Cerberus
Game: FFXI
Posts: 148
By Cerberus.Flaminglegion 2014-06-12 09:52:36
Link | Quote | Reply
 
Yeah, use %TP Spellcast Variables

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