Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function job_post_precast(spell, action, spellMap, eventArgs)
- if spell.type == 'WeaponSkill' then
- if spell.english == "Resolution" then
- --Favorable weather (obi equip)
- if world.weather_element == 'Lightning' or
- world.weather_element == 'Wind' or
- world.weather_element == 'Light' or
- world.day_element == 'Lightning' or
- world.day_element == 'Wind' or
- world.day_element == 'Lightning' then
- equip(sets.Obi)
- --Unfavorable weather (other belt equip)
- if world.weather_element == 'Earth' or
- world.weather_element == 'Ice' or
- world.weather_element == 'Dark' or
- world.day_element == 'Earth' or
- world.day_element == 'Ice' or
- world.day_element == 'Dark' then
- equip={waist="Fotia Belt"}
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment