Lycurgos Moonshade Rule

言語: JP EN DE FR
2010-06-21
New Items
users online
フォーラム » FFXI » General » Lycurgos moonshade rule
Lycurgos moonshade rule
Offline
Posts: 1186
By Boshi 2019-08-30 13:42:34  
has anyone written a moonshade rule for Lycurgos?

I'm not sure or if it's possible to show hp as a flat value in gearswap as opposed to % hp?
 Fenrir.Richybear
Offline
サーバ: Fenrir
Game: FFXI
user: Richybear
Posts: 1142
By Fenrir.Richybear 2019-08-30 14:01:16  
how much of a bonus does it turn out to be though?
inb4 lolRichytaruHP
Offline
Posts: 1186
By Boshi 2019-08-30 14:53:53  
1/5 hp

so 200tp per 1k hp
 Shiva.Spynx
Offline
サーバ: Shiva
Game: FFXI
user: auron86
Posts: 371
By Shiva.Spynx 2019-08-30 18:38:00  
You can read the actual HP via gearswap (docs)

I haven't tested it myself but something like this should work:
Code
function job_post_precast(spell, action, spellMap, eventArgs)
    if spell.type == 'WeaponSkill' and player.equipment.main == "Lycurgos" then
		local tp_bonus = floor(player.hp/5)
		if (player.tp + tp_bonus) >= 3000 then
			equip(sets.precast.WS.FullTP)
		end
	end
end

You can customize when to swap out moonshade (e.g. 2900tp is enough to justify something else)
[+]
Offline
Posts: 1186
By Boshi 2019-08-30 18:55:13  
thank you
Log in to post.