Gearswap And WS TP 3000

Language: JP EN DE FR
2010-09-08
New Items
users online
Forum » Windower » General » Gearswap and WS TP 3000
Gearswap and WS TP 3000
 Ragnarok.Alexhander
Offline
Server: Ragnarok
Game: FFXI
Posts: 92
By Ragnarok.Alexhander 2017-01-11 08:53:14
Link | Quote | Reply
 
Hello,
how i can set the command to swap equip when i got 3000 TP on WS?
 Shiva.Spynx
Offline
Server: Shiva
Game: FFXI
user: auron86
Posts: 371
By Shiva.Spynx 2017-01-11 09:23:57
Link | Quote | Reply
 
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
Log in to post.