Item Search
     
BG-Wiki Search
Page 198 of 302 FirstFirst ... 148 188 196 197 198 199 200 208 248 ... LastLast
Results 3941 to 3960 of 6036

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

  1. #3941
    Pseudo-Elitist
    Join Date
    Mar 2008
    Posts
    3,462
    BG Level
    7
    FFXI Server
    Leviathan

    Wish I read this thread earlier, went to kill Dragua for reforge and crashed when I tried to Samba myself. -.-

  2. #3942
    Smells like Onions
    Join Date
    Feb 2013
    Posts
    1
    BG Level
    0

    Quote Originally Posted by errantfish View Post
    I can confirm this in my game as well. Spells selected from menu swap gear correctly, but for macros, the ones with <t> fail to swap.
    Just to add to this, on whm using commands such as
    //c3 cow
    (with cow being the start of someones name), makes the gearswap work correctly, but if you just do //c3 while having said person targeted it will cast on yourself rather than them.

    <p1-6> work correctly, as does <bt> for enfeebles/nuking, seems to just be straight <t> which isn't functioning correctly.

  3. #3943
    BG Content
    Join Date
    Jul 2007
    Posts
    22,365
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    Rerun launcher and everything should be fixed.

  4. #3944
    Smells like Onions
    Join Date
    Mar 2015
    Posts
    6
    BG Level
    0

    try reloading it now sems to be working

  5. #3945
    Smells like Onions
    Join Date
    Jul 2012
    Posts
    8
    BG Level
    0

    Would anyone happen to have, or know where I could find the previous version of the gearswap files that were updated for the most recent ffxi update? I play on a private server, and they haven't pushed the update yet, so some of us are having those pol crash issues now until that update is applied. I'm not even sure if it would work, but we didn't have any issues till windower updated to the new files. Just figured I'd try and see anyone had a database of older versions.

    Thanks a bunch.

  6. #3946
    BG Content
    Join Date
    Jul 2007
    Posts
    22,365
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    Gearswap is irrelevant. You need the old LuaCore.

  7. #3947
    Smells like Onions
    Join Date
    Jul 2012
    Posts
    8
    BG Level
    0

    Hm. ok thanks Bryth. Any ideas where/if I could find an older version, if changing it would even work in this situation? Np if not, just figured I'd give it a shot. Thanks for the info.

  8. #3948
    Melee Summoner
    Join Date
    Apr 2010
    Posts
    28
    BG Level
    1
    FFXIV Character
    Fae Lindae
    FFXIV Server
    Excalibur
    FFXI Server
    Leviathan
    WoW Realm
    Magtheridon

    Tried fixing my BRD lua after being away for some time. It loads ingame but nothing happens when songs are cast. Using Mote's BRD lua for this. I also checked my other job ones and they all work properly.
    http://pastebin.com/hFjTBiLH - Gear lua file, http://pastebin.com/iyGgg1tX - Job lua file. Unsure where i broke this one since theres no errors showing.

  9. #3949
    Old Odin
    Join Date
    Oct 2006
    Posts
    6,198
    BG Level
    8
    FFXI Server
    Asura

    is there a command in gearswap to lock a slot permanently without writing it into the lua file of the gearswap? For example if i want to lock the weapon and subweapon slot on the fly

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

    Quote Originally Posted by Damane View Post
    is there a command in gearswap to lock a slot permanently without writing it into the lua file of the gearswap? For example if i want to lock the weapon and subweapon slot on the fly
    //gs enable <optional slot>
    //gs disable <optional slot>

    all commamnds and functions are listed in the addons\ GearSwap\ beta_examples_and_information\ Variables.xlsx file

  11. #3951
    Old Odin
    Join Date
    Oct 2006
    Posts
    6,198
    BG Level
    8
    FFXI Server
    Asura

    Quote Originally Posted by dlsmd View Post
    //gs enable <optional slot>
    //gs disable <optional slot>

    all commamnds and functions are listed in the addons\ GearSwap\ beta_examples_and_information\ Variables.xlsx file
    thx a bunch <3

  12. #3952
    Smells like Onions
    Join Date
    Feb 2010
    Posts
    4
    BG Level
    0
    FFXI Server
    Quetzalcoatl

    Anyone have something i can add to my whm lua to have Ebers Briault geared up before my Afflatus Solace goes off?

  13. #3953
    Relic Shield
    Join Date
    Mar 2007
    Posts
    1,789
    BG Level
    6
    FFXIV Character
    Rehn Valor
    FFXIV Server
    Sargatanas
    FFXI Server
    Ragnarok

    You mean precast in it? I'm pretty sure it only needs to be on when the cure goes off to take effect, but if thats not what you mean then...:

    if you have something like: sets.precast = {}
    then you'll use something like: sets.precast['Afflatus: Solace'] = {body="Ebers Briault"}

  14. #3954
    Banned.

    Join Date
    Mar 2015
    Posts
    68
    BG Level
    2

    Nvm, found a different script to use and it works.

  15. #3955
    Puppetmaster
    Join Date
    Jan 2014
    Posts
    59
    BG Level
    2

    Quote Originally Posted by pompeii View Post
    Anyone have something i can add to my whm lua to have Ebers Briault geared up before my Afflatus Solace goes off?
    Code:
    function precast(spell, action)
        if spell.type == 'JobAbility' then
            if spell.name == 'Afflatus Solace' then
                equip({body="Ebers Briault"})
            end
        end
    end
    
    function midcast(spell,action)
        if spell.name:startswith('Cure') then
            if buffactive['Afflatus Solace'] then
                equip(sets.midcast.Cure, {body="Ebers Briault"})
            end
        end
    end

  16. #3956
    Puppetmaster
    Join Date
    Jan 2014
    Posts
    59
    BG Level
    2

    Quote Originally Posted by Faelindae View Post
    Tried fixing my BRD lua after being away for some time. It loads ingame but nothing happens when songs are cast. Using Mote's BRD lua for this. I also checked my other job ones and they all work properly.
    http://pastebin.com/hFjTBiLH - Gear lua file, http://pastebin.com/iyGgg1tX - Job lua file. Unsure where i broke this one since theres no errors showing.
    You're missing user_setup() in your sidecar.

    Your sidecar should look like this. user_setup has to match your main lua.
    Code:
    function user_setup()
        state.OffenseMode:options('None', 'Normal')
        state.CastingMode:options('Normal', 'Resistant')
        state.IdleMode:options('Normal', 'PDT')
    
        brd_daggers = S{'Izhiikoh', 'Vanir Knife', 'Atoyac', 'Aphotic Kukri', 'Sabebus'}
        pick_tp_weapon()
        
        -- Adjust this if using the Terpander (new +song instrument)
        info.ExtraSongInstrument = 'Terpander'
        -- How many extra songs we can keep from Daurdabla/Terpander
        info.ExtraSongs = 1
        
        -- Set this to false if you don't want to use custom timers.
        state.UseCustomTimers = M(true, 'Use Custom Timers')
        
        -- Additional local binds
        send_command('bind ^` gs c cycle ExtraSongsMode')
        send_command('bind !` input /ma "Chocobo Mazurka" <me>')
    
        select_default_macro_book()
    end
    
    function init_gear_sets()
        add_to_chat(8,'----- BRD GearSets locked and loaded! You are at '..world.area..'. -----')
    
        sets.everything = {}
    end

  17. #3957
    Melee Summoner
    Join Date
    Apr 2010
    Posts
    28
    BG Level
    1
    FFXIV Character
    Fae Lindae
    FFXIV Server
    Excalibur
    FFXI Server
    Leviathan
    WoW Realm
    Magtheridon

    Ah knew i missed something, thanks!

  18. #3958
    Sea Torques
    Join Date
    May 2010
    Posts
    718
    BG Level
    5
    FFXI Server
    Ragnarok

    Brand new to Gearswap, How do I lock in sets for say MDT/PDT etc.?

    If I can just take a look at someones file that would be great.

    Also any one have a file for THF SAM and DRG I can look at?

  19. #3959
    Relic Shield
    Join Date
    Jan 2013
    Posts
    1,868
    BG Level
    6

    Its as if the other gearswap thread stickied at the top of this forums doesnt exist.

    Gearswap-Shop-Thread

  20. #3960
    Sea Torques
    Join Date
    May 2010
    Posts
    718
    BG Level
    5
    FFXI Server
    Ragnarok

    Ok thanks found a decent SAM file there.

    Quote Originally Posted by Gun-it View Post
    Brand new to Gearswap, How do I lock in sets for say MDT/PDT etc.?
    ^^

Page 198 of 302 FirstFirst ... 148 188 196 197 198 199 200 208 248 ... LastLast

Similar Threads

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