Item Search
     
BG-Wiki Search
Page 162 of 302 FirstFirst ... 112 152 160 161 162 163 164 172 212 ... LastLast
Results 3221 to 3240 of 6036

Thread: Gearswap Help Thread!     submit to reddit submit to twitter

  1. #3221
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    windower.ffxi.get_spell_recasts()[112] = 907 this is the recast for Enblizzard II all the rest are 0

  2. #3222
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    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

  3. #3223
    Melee Summoner
    Join Date
    Feb 2014
    Posts
    48
    BG Level
    1

    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"},

  4. #3224
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    the code i posted??
    in my previous post??

  5. #3225
    Melee Summoner
    Join Date
    Feb 2014
    Posts
    48
    BG Level
    1

    Quote Originally Posted by dlsmd View Post
    the code i posted??
    in my previous post??
    no the code you posted is showing Canceling = MyName but blank gaze doesn't go off

  6. #3226
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    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

  7. #3227
    Melee Summoner
    Join Date
    Feb 2014
    Posts
    48
    BG Level
    1

    Quote Originally Posted by dlsmd View 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
    YAY! youre the best it works!

  8. #3228
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    WOOOHOOO
    glad i could help

  9. #3229
    Melee Summoner
    Join Date
    Feb 2014
    Posts
    48
    BG Level
    1

    so much thanks! this helps a lot

  10. #3230
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    hay i told you once i help because i want to if i did not want to i would not

  11. #3231
    Melee Summoner
    Join Date
    Feb 2014
    Posts
    48
    BG Level
    1

    nvm

  12. #3232
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    sorry bad joke im glad i could help

  13. #3233
    Melee Summoner
    Join Date
    Feb 2014
    Posts
    48
    BG Level
    1

    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

  14. #3234
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    for
    Jettatura use id 575
    Geist Wall use id 605

    other then this i have no clue

  15. #3235
    Nidhogg
    Join Date
    Aug 2007
    Posts
    3,756
    BG Level
    7
    FFXI Server
    Bahamut

    Quote Originally Posted by Byrthnoth View Post
    Things were changed, but if everything downloaded properly you shouldn't be getting any errors. Here is a link to my current version of gearswap: https://www.dropbox.com/s/xykrch9fs3...rSwap.zip?dl=0
    That seemed to do it. I don't think I've ever experienced an in-proper download before, or at least knew about it. Thanks Byrth.

  16. #3236
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    Quote Originally Posted by Malithar View Post
    That seemed to do it. I don't think I've ever experienced an in-proper download before, or at least knew about it. Thanks Byrth.
    it happens sometimes
    but there are things that you can do to fix it
    1. delete the windower/updates folder then reload the windower app

    2. download directly from the windower github

  17. #3237
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    24
    BG Level
    1
    FFXI Server
    Phoenix

    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

  18. #3238
    Melee Summoner
    Join Date
    Apr 2014
    Posts
    28
    BG Level
    1

    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']

  19. #3239
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    i think somthing like this should work
    Code:
    if sets.precast.Item[spell.name] then
        equip(sets.precast.Item[spell.name])
    end

  20. #3240
    Hydra
    Join Date
    Feb 2014
    Posts
    131
    BG Level
    3
    FFXI Server
    Quetzalcoatl

    Quote Originally Posted by stokeydan View Post
    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
    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.
    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
    Delete this set.
    Code:
    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"}
    Try and load cor.lua and let me know what error you're seeing in the console. It may also help to //gs validate

Page 162 of 302 FirstFirst ... 112 152 160 161 162 163 164 172 212 ... LastLast

Similar Threads

  1. Replies: 6547
    Last Post: 2014-07-08, 22:45