I don't believe so. That should be fine.
edit:
Code:
function get_sets()
ws_hat = {"Otomi Helm", "Mekira-Oto +1"}
ws_index = 1
sets.precast.WS["Stardiver"][0] = {
ammo="Thew Bomblet",
head=ws_hat[ws_index],
body="Miki. Breastplate",
hands="Miki. Gauntlets",
legs="Cizin Breeches +1",
feet="Mikinaak Greaves",
neck="Light Gorget",
waist="Light Belt",
left_ear="Brutal Earring",
right_ear="Moonshade Earring",
left_ring="Pyrosoul Ring",
right_ring="Pyrosoul Ring",
back="Atheling Mantle"
}
end
function precast(spell)
if spell.type== 'WeaponSkill' then
if world.day == 'Earthsday' or world.day=='Lightsday' or world.day=='Darksday' then ws_index=2 else ws_index=1 end
if sets.precast.WS[spell.english] then equip(sets.precast.WS[spell.english][accuracy_tier] or sets.precast.JA[spell.english]) end
end
end
I thought that this would work for equipping mekira-oto +1, but it doesn't. Anyone see the error?