windower.ffxi.get_spell_recasts()[112] = 907 this is the recast for Enblizzard II all the rest are 0
windower.ffxi.get_spell_recasts()[112] = 907 this is the recast for Enblizzard II all the rest are 0
ok i think i know what happened for some reason ffxi or windower now uses the spells id for the recast time
so try this in your lua file
Code:elseif spell.english == "Flash" and (windower.ffxi.get_spell_recasts()[spell.id] > 0) then cancel_spell() add_to_chat(7,"Cancelling ="..tostring(player.name)) if (windower.ffxi.get_spell_recasts()[592] > 0) then send_command('input /ma "Blank Gaze" <t>') add_to_chat(7,"Swithch to Blank Gaze") end
so for some odd reason its trying to pull spells.lua data...
[112] = {id=112,en="Flash",ja="フラッシュ",cast_time= 2,element=6,icon_id=158,icon_id_nq=6,levels={[3]=45,[7]=37,[22]=45},mp_cost=25,prefix="/magic",range=12,recast=180,recast_id=48,requiremen ts=0,skill=32,targets=32,type="WhiteMagic"},
the code i posted??
in my previous post??
ok try this then
Code:elseif spell.english == "Flash" and (windower.ffxi.get_spell_recasts()[spell.id] > 0) then cancel_spell() add_to_chat(7,"Cancelling ="..tostring(spell.name)) if (windower.ffxi.get_spell_recasts()[592] == 0) then send_command('input /ma "Blank Gaze" <t>') add_to_chat(7,"Swithch to Blank Gaze") end
WOOOHOOO
glad i could help
so much thanks! this helps a lot
hay i told you once i help because i want to if i did not want to i would not
nvm
sorry bad joke im glad i could help![]()
Lol! Yeah thank you you solo much.. But! I can't test anymore gf is mad at me lol but can you check geist wall ID out its acting weird.. And jettatura is working but only one spell_recast or spells has an ID for it.. Something is going on lol
for
Jettatura use id 575
Geist Wall use id 605
other then this i have no clue
i have modes.lua so ive put my cor lau into a pastebin as requested
http://pastebin.com/0NyH23ue
http://pastebin.com/uueh9Giv
top one is my side car lua
bottom one is cor.lua
Any way to get a precast set working for Icarus Wing?
I tried the code below and got an error.
Code:sets.precast.Item['Icarus Wing']
i think somthing like this should work
Code:if sets.precast.Item[spell.name] then equip(sets.precast.Item[spell.name]) end
It looks like you're using my COR.lua, but your gear sets look older then what I'm using. I'm not sure, but you may need to download my COR_gear.lua and fill in all your gear again.
Only thing I really see, is you're missing sets.engaged, and sets.engaged.DW. You also have sets.engaged.Ranged, and I removed that toggle from my COR.lua.
Look for sets.engaged.Melee in you Cor_gear.lua, and put this above it.
Delete this set.Code:sets.engaged = { head="Whirlpool Mask",neck="Twilight Torque",ear1="Clearview Earring",ear2="Volley Earring", body="Iuitl Vest",hands="Iuitl Wristbands",ring1="Defending Ring",ring2=gear.DarkRing.physical, back="Shadow Mantle",waist="Flume Belt",legs="Nahtirah Trousers",feet="Iuitl Gaiters +1" } sets.engaged.DW = sets.engaged
Try and load cor.lua and let me know what error you're seeing in the console. It may also help to //gs validateCode:sets.engaged.Ranged = {ammo=gear.RAbullet, head="Whirlpool Mask",neck="Twilight Torque",ear1="Clearview Earring",ear2="Volley Earring", body="Iuitl Vest",hands="Iuitl Wristbands",ring1="Defending Ring",ring2=gear.DarkRing.physical, back="Shadow Mantle",waist="Flume Belt",legs="Nahtirah Trousers",feet="Iuitl Gaiters +1"}