Item Search
     
BG-Wiki Search
Page 154 of 302 FirstFirst ... 104 144 152 153 154 155 156 164 204 ... LastLast
Results 3061 to 3080 of 6036

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

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

    does this look like it should work??
    http://pastebin.com/y2nF3EQC

  2. #3062
    Sea Torques
    Join Date
    Nov 2007
    Posts
    694
    BG Level
    5
    FFXI Server
    Asura

    I notice that the COR lua has a gearset for Dual Wield, how do I activate that?

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

    here is what im working on right now

    i want to automaticaly turn this string in to the table below it
    Code:
    test_string = '--Nin Wheel--\nNormal\n--Level 1 Start--\n ${Wind1}  ${Fire1}  ${Ice1}\n  ${Water1}  ${Earth1}\n    ${Lightning1}\n--Level 2 Start--\n ${Wind2}  ${Fire2}  ${Ice2}\n  ${Water2}  ${Earth2}\n    ${Lightning2}\n--Level 3 Start--\n ${Wind3}  ${Fire3}  ${Ice3}\n  ${Water3}  ${Earth3}\n    ${Lightning3}\nForce Stop\nSwitch To\nSuper NIN Wheel'
    my_table = {
        [1] = '--Nin Wheel--',
        [2] = 'Normal',
        [3] = '--Level 1 Start--',
        [4] = {'Wind1','Fire1','Ice1'},
        [5] = {'Water1','Earth1'},
        [6] = 'Lightning1',
        [7] = '--Level 2 Start--',
        [8] = {'Wind2','Fire2','Ice2'},
        [9] = {'Water2','Earth2'},
        [10] = 'Lightning2',
        [11] = '--Level 3 Start--',
        [12] = {'Wind3','Fire3','Ice3'},
        [13] = {'Water3','Earth3'},
        [14] = 'Lightning3',
        [15] = 'Force Stop',
        [16] = 'Switch To',
        [17] = 'Super NIN Wheel',}
    i can do this
    Code:
    my_table = T(test_string:split('\n'))
    to get this table but im stuck how to get it the rest of the way
    Code:
    my_table = {
        [1] = '--Nin Wheel--',
        [2] = 'Normal',
        [3] = '--Level 1 Start--',
        [4] = ' ${Wind1}  ${Fire1}  ${Ice1}',
        [5] = '  ${Water1}  ${Earth1}',
        [6] = '    ${Lightning1}',
        [7] = '--Level 2 Start--',
        [8] = ' ${Wind2}  ${Fire2}  ${Ice2}',
        [9] = '  ${Water2}  ${Earth2}',
        [10] = '    ${Lightning2}',
        [11] = '--Level 3 Start--',
        [12] = ' ${Wind3}  ${Fire3}  ${Ice3}',
        [13] = '  ${Water3}  ${Earth3}',
        [14] = '    ${Lightning3}',
        [15] = 'Force Stop',
        [16] = 'Switch To',
        [17] = 'Super NIN Wheel',}
    --edit--
    ok i figured it out like this
    Code:
    test_string = '--Nin Wheel--\nNormal\n--Level 1 Start--\n ${Wind1}  ${Fire1}  ${Ice1}\n  ${Water1}  ${Earth1}\n    ${Lightning1}\n--Level 2 Start--\n ${Wind2}  ${Fire2}  ${Ice2}\n  ${Water2}  ${Earth2}\n    ${Lightning2}\n--Level 3 Start--\n ${Wind3}  ${Fire3}  ${Ice3}\n  ${Water3}  ${Earth3}\n    ${Lightning3}\nForce Stop\nSwitch To\nSuper NIN Wheel'
    my_table = T(test_string:split('\n'))
    for i,v in pairs(my_table) do
        for w in string.gmatch (v, '%a+%d') do
            if type(my_table[i]) ~= 'table' then
                my_table[i] = T{}
            end
            my_table[i]:append(w)
        end
    end

  4. #3064
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    14
    BG Level
    1

    Having issues with the gearswap skill up.lua, specifically the SMN part it seems to send commands too fast so it spams. Eventually it locks up on the elemental section and doesnt start again til after healing to full mp and locking again. Havent changed any of the original code from gearswap shop thread. And it says sat update about 13hrs Any help would be appreciated ^.^

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

    Quote Originally Posted by QuetzT View Post
    Having issues with the gearswap skill up.lua, specifically the SMN part it seems to send commands too fast so it spams. Eventually it locks up on the elemental section and doesnt start again til after healing to full mp and locking again. Havent changed any of the original code from gearswap shop thread. And it says sat update about 13hrs Any help would be appreciated ^.^
    are you using the one located here or an older one
    https://github.com/smd111/Gearswap-Skillup

  6. #3066
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    14
    BG Level
    1

    using the one located at that link.

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

    Quote Originally Posted by QuetzT View Post
    using the one located at that link.
    are any errors showing in the windower logs??
    im in the bg chat

  8. #3068
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    14
    BG Level
    1

    Quote Originally Posted by dlsmd View Post
    are any errors showing in the windower logs??
    none, only things that made me ask for help was that it seems to want to recast to quickly so its like 4/5 Unable to cast spells in log, then it releases.. but when it gets to Elementals it gets stuck on trying to recast and not release.

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

  10. #3070
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    14
    BG Level
    1

    no luck, that one doesnt start with "gs c startsmn" nor will it allow me to cast manual ; ;

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

  12. #3072
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    14
    BG Level
    1

    thanks for helping btw, same results on that one as well. no start and cant cast manually.

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

    ok try this one
    https://github.com/smd111/Gearswap-Skillup

    by the way the screen that shows up is a menu you can click on it

  14. #3074
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    14
    BG Level
    1

    same on that one. tried all 3 (click, start up command, and manual).

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

    tru to use the command in chat then reload skillup.lua
    //reload luacore

  16. #3076
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    14
    BG Level
    1

    no change. if it helps, i tried to start enchancing as well and didnt work. and seems to block and magic casting (im /rdm so tried protect,phalanx, etc)

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

    ok try this
    redownload https://github.com/smd111/Gearswap-Skillup
    change near the top of the file debugmode = true
    then use the command //lua unloadall;reload luacore;lua load gearswap
    the load the skillup and tell me any thing that shows up in the windower logs

    also did you change any thing in it, are you in battle are you solo w/out trusts

    can you unload gearswap and cast spells

    how long has your ffxi been up for?

  18. #3078
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    14
    BG Level
    1

    only thing that showed in the console was "tell me code 167" -- aside from that no change or errors present

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

    Quote Originally Posted by QuetzT View Post
    only thing that showed in the console was "tell me code 167" -- aside from that no change or errors present
    thats what i wanted to see
    have you tried to restart ffxi
    are you on dev or live

  20. #3080
    RIDE ARMOR
    Join Date
    Oct 2014
    Posts
    14
    BG Level
    1

    Quote Originally Posted by dlsmd View Post
    thats what i wanted to see
    have you tried to restart ffxi
    I will try that again now. I did lastnight when i first had issue, restart and reran and woke up to it stuck on elemental.

Page 154 of 302 FirstFirst ... 104 144 152 153 154 155 156 164 204 ... LastLast

Similar Threads

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