I have 3 problems with my SCH lua"
1) This code doesn't seem to work for me with Kinematics' SCH lua:
Code:
sets.midcast.CureWithLightWeather = {main="Chatoyant Staff",
head="Gende. Caubeen",
body="Peda. Gown +1",
hands="Pedagogy Bracers",
legs="Acad. Pants +1",
feet="Regal Pumps",
neck="Phalaina Locket",
waist="Korin Obi",
left_ear="Beatific Earring",
right_ear="Lifestorm Earring",
left_ring="Prolix Ring",
right_ring="Sirona's Ring",
back="Twilight Cape"}
Code:
function job_get_spell_map(spell, default_spell_map)
if spell.action_type == 'Magic' then
if default_spell_map == 'Cure' or default_spell_map == 'Curaga' then
if world.weather_element == 'Light' then
return 'CureWithLightWeather'
end
When I cast cure with Aurorastorm up, it still uses my default cure set and not the weather set with chatoyant/twilight/obi.
2) When I stun with Alacrity up, its not using my alacrityStun set:
Code:
sets.midcast.StunAlacrity = {main="Apamajas II",sub="Mephitis Grip",ammo="Incantor Stone",
head="Nahtirah Hat",neck="Orunmila's Torque",ear1="Enchntr. Earing +1",ear2="Loquacious Earring",
body="Vanir Cotehardie",hands="Gendewitha Gages",ring1="Prolix Ring",ring2="Sangoma Ring",
back="Swith Cape",waist="Witful Belt",legs="Artsieq Hose",feet="Pedagogy Loafers +1"}
sets.midcast.Stun.Resistant = set_combine(sets.midcast.Stun, {main="Lehbrailg +2"})
Code:
function job_post_midcast(spell, action, spellMap, eventArgs)
if spell.action_type == 'Magic' then
apply_grimoire_bonuses(spell, action, spellMap, eventArgs)
if spell.english == 'Stun' and buffactive['Alacrity'] then
equip(sets.StunAlacrity)
3) When I stun, it keeps my Apamajas II and Sangoma Ring on when I aftercast back to idle. I have every idle piece on except I retain my ring and main weapon. When I cast stun AGAIN, i aftercast in full idle gear with bolelabunga and paguroidea ring. No fucking idea why. Literally ONE CAST cast will aftercast me in Bolelabunga+Genbu Shield+Paguroidea Ring, and EVERY OTHER cast will aftercast me in Apajamas II+Mephitis Grip+Sangoma Ring. Why would it be 50/50 on the aftercast and why isn't it detecting when Alacrity is up and use my AlacrityStun set?
gearswap pastebin for reference
http://pastebin.com/3TK5hNxg