Gearswap And WS TP 3000

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » Windower » General » Gearswap and WS TP 3000
Gearswap and WS TP 3000
 Ragnarok.Alexhander
Offline
サーバ: Ragnarok
Game: FFXI
Posts: 92
By Ragnarok.Alexhander 2017-01-11 08:53:14  
Hello,
how i can set the command to swap equip when i got 3000 TP on WS?
 Shiva.Spynx
Offline
サーバ: Shiva
Game: FFXI
user: auron86
Posts: 371
By Shiva.Spynx 2017-01-11 09:23:57  
You need to add a custom precast logic. If you are using mote, you can use the job_post_precast function that runs after the default one:
Code
function job_post_precast(spell, action, spellMap, eventArgs)
	if spell.type == "WeaponSkill" and player.tp == 300 then
		equip(sets.midcast.WS.FullTP)
	end
end