Using Spellcast To Cast Convert

Language: JP EN DE FR
2010-09-08
New Items
users online
Forum » FFXI » Jobs » White Mage » using spellcast to cast convert
using spellcast to cast convert
 Phoenix.Gaiarorshack
Offline
Server: Phoenix
Game: FFXI
user: MiavPigen
Posts: 1245
By Phoenix.Gaiarorshack 2011-12-09 23:58:27
Link | Quote | Reply
 
it looks like you can make spellcast do an action depending on current mp

Has anyone figured out to use that to autouse convert ?
 Fenrir.Niniann
Offline
Server: Fenrir
Game: FFXI
user: Ninian
Posts: 2871
By Fenrir.Niniann 2011-12-10 00:44:14
Link | Quote | Reply
 
Code xml
<if MPLT="50">
<command>input /ja "Convert" <me></command>
</if>


should work... not sure why you'd want to do this butya/
Offline
Posts: 78
By SilverTalon 2011-12-10 01:33:03
Link | Quote | Reply
 
Phoenix.Gaiarorshack said: »
it looks like you can make spellcast do an action depending on current mp Has anyone figured out to use that to autouse convert ?
Yes, please explain why you would want it to automatically convert for u <.< ?
 Phoenix.Gaiarorshack
Offline
Server: Phoenix
Game: FFXI
user: MiavPigen
Posts: 1245
By Phoenix.Gaiarorshack 2011-12-10 01:42:58
Link | Quote | Reply
 
well i duo/trio box and its a bit nicer that in that case it goes of instead of my cure macroes does not goes off.

I keep focus on my tanking screen and i have little numeric keyboard for macroes to my whm mule.
 Siren.Thoraeon
Offline
Server: Siren
Game: FFXI
user: Thoraeon
Posts: 2215
By Siren.Thoraeon 2011-12-10 01:54:54
Link | Quote | Reply
 
Gonna laugh when you run out of mp near undead.
[+]
 Phoenix.Gaiarorshack
Offline
Server: Phoenix
Game: FFXI
user: MiavPigen
Posts: 1245
By Phoenix.Gaiarorshack 2011-12-10 16:40:32
Link | Quote | Reply
 
lol


point taken
 Siren.Kalilla
VIP
Offline
Server: Siren
Game: FFXI
user: Kalila
Posts: 14552
By Siren.Kalilla 2011-12-10 16:54:02
Link | Quote | Reply
 
To automatically do it you'll need to use autoexec:

Autoexec:
Code xml
<register event="mpplt50">input /ja "provoke" <me></register>


Provoke is just a trigger~

Spellcast:
Code xml
<if spell="Provoke" SpellTargetType="SELF">
	<if MPPLT="50">
		<command>input /ja "Convert" <me></command>
	</if>
</if>


I would recommend you don't do it though, but then again I'm not a fan of dual-boxing either so meh.
 Quetzalcoatl.Mitosis
Offline
Server: Quetzalcoatl
Game: FFXI
user: xMitosisx
Posts: 317
By Quetzalcoatl.Mitosis 2011-12-10 17:54:37
Link | Quote | Reply
 
Why would you also need to use a spellcast rule for this? The way you have it, Autoexec and spellcast are both using the same checks to use convert. Instead of provoking yourself, just have Autoexec convert for you.

Code xml
<register event="mpplt50">input /ja "convert" <me></register>
Log in to post.