Using Spellcast To Cast Convert

言語: JP EN DE FR
2010-06-21
New Items
users online
フォーラム » FFXI » Jobs » White Mage » using spellcast to cast convert
using spellcast to cast convert
 Phoenix.Gaiarorshack
Offline
サーバ: Phoenix
Game: FFXI
user: MiavPigen
Posts: 1245
By Phoenix.Gaiarorshack 2011-12-09 23:58:27  
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
サーバ: Fenrir
Game: FFXI
user: Ninian
Posts: 2871
By Fenrir.Niniann 2011-12-10 00:44:14  
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  
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
サーバ: Phoenix
Game: FFXI
user: MiavPigen
Posts: 1245
By Phoenix.Gaiarorshack 2011-12-10 01:42:58  
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
サーバ: Siren
Game: FFXI
user: Thoraeon
Posts: 2215
By Siren.Thoraeon 2011-12-10 01:54:54  
Gonna laugh when you run out of mp near undead.
[+]
 Phoenix.Gaiarorshack
Offline
サーバ: Phoenix
Game: FFXI
user: MiavPigen
Posts: 1245
By Phoenix.Gaiarorshack 2011-12-10 16:40:32  
lol


point taken
 Siren.Kalilla
VIP
Offline
サーバ: Siren
Game: FFXI
user: Kalila
Posts: 14552
By Siren.Kalilla 2011-12-10 16:54:02  
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
サーバ: Quetzalcoatl
Game: FFXI
user: xMitosisx
Posts: 317
By Quetzalcoatl.Mitosis 2011-12-10 17:54:37  
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.