Item Search
     
BG-Wiki Search
+ Reply to Thread
Page 13 of 18 FirstFirst ... 3 11 12 13 14 15 ... LastLast
Results 241 to 260 of 358

Thread: Gearswap Shop Thread     submit to reddit submit to twitter

  1. #241

    Quote Originally Posted by ImpendingDeath View Post
    Hello, I'm looking for a BLM lua, only 1 on the front page and I've been having issues with it, and it doesn't really have everything I would like. Would anyone mind sharing theirs so I could try to find one that better suits me?
    should post a link to your so we know if its the same or not

  2. #242
    RIDE ARMOR
    Join Date
    May 2010
    Posts
    24
    BG Level
    1
    FFXI Server
    Carbuncle

    oops wrong topic, sorry, edited

  3. #243
    Stalking you
    Join Date
    Dec 2007
    Posts
    402
    BG Level
    4
    FFXIV Character
    V' Mod
    FFXIV Server
    Atomos
    FFXI Server
    Quetzalcoatl

    sam rng thf whm brd sch

    quite specialized. if you don't use 120+ equips for your jobs, i don't recommend my luas.

    *all include full-time equip jp cape in woh gates, or elsewhere with either cor roll or commitment effect active
    *sch includes burst mode, works same as daurdabla dummy. active for only one spell, then resets itself
    *current and working as of 11/2015 (ignore creation date)

    uses editted mote-mappings that are also posted

    vmod's pastebin

  4. #244
    Cerberus
    Join Date
    Jul 2005
    Posts
    436
    BG Level
    4
    FFXI Server
    Shiva

    Anyone got an up to date RDM gs?

  5. #245
    Puppetmaster
    Join Date
    Jan 2014
    Posts
    51
    BG Level
    2
    FFXI Server
    Bahamut

    Anyone willing to share a SMN lua (preferably minus Nirvana, but I will take what I can get)?

    Thanks in advance.

  6. #246
    Old Merits
    Join Date
    Apr 2006
    Posts
    1,006
    BG Level
    6

    I'm coming back to XI after a hiatus, and see that Spellcast is broken and this replaces it. I'm not worried about all the LUA stuff, but I'd like to know if there a simple "Make it work like old vanilla Spellcast" method? I mean stuff like being able to type /ma Fire 4 or //cure Me into the chat window and have the plugin interpret what I'm trying to do.

  7. #247

    Quote Originally Posted by cassiraa View Post
    I'm coming back to XI after a hiatus, and see that Spellcast is broken and this replaces it. I'm not worried about all the LUA stuff, but I'd like to know if there a simple "Make it work like old vanilla Spellcast" method? I mean stuff like being able to type /ma Fire 4 or //cure Me into the chat window and have the plugin interpret what I'm trying to do.
    to do /ma fire 4 use shortcuts

  8. #248
    Old Merits
    Join Date
    Apr 2006
    Posts
    1,006
    BG Level
    6

    Quote Originally Posted by dlsmd View Post
    to do /ma fire 4 use shortcuts
    That's exactly what I was looking for, thank you.

  9. #249
    New Spam Forum
    Join Date
    Jul 2008
    Posts
    180
    BG Level
    3
    FFXI Server
    Phoenix

    Is there a direct link to a place where I can read on how to load/unload and correctly use GearSwap and the Lua's I find? All this is highly confusing and I'm finding the standard FF macro system isn't working for me anymore.

  10. #250

    windower\addons\GearSwap\beta_examples_and_informa tion\Variables.xlsx has 99% of the commands that gearswap has to offer

  11. #251
    New Spam Forum
    Join Date
    Jul 2008
    Posts
    180
    BG Level
    3
    FFXI Server
    Phoenix

    Thanks, I'll try to figure this out.

  12. #252
    New Spam Forum
    Join Date
    Jul 2008
    Posts
    180
    BG Level
    3
    FFXI Server
    Phoenix

    I got everything to work, but now I am in need of an updated Whm lua, preferably Aug 2015 - Nov 2015. If ya got one please post it.

  13. #253
    Cerberus
    Join Date
    Nov 2008
    Posts
    419
    BG Level
    4
    FFXI Server
    Cerberus

    Want it to put my Sublimation Set on if my Sublimation is charging
    sets.Idle.Sublimation = set_combine(sets.Idle.Refresh,{
    body="Pedagogy gown"})

    function status_change(new,old)
    if Armor == 'PDT' then
    equip(sets.PDT)
    elseif new == 'Engaged' then
    equip(sets.Melee)
    elseif new == 'Idle' then
    equip(sets.Idle[IdleArray[IdleIndex]])
    elsseif buffactive["Sublimation: Activated"] then
    equip(sets.Idle.Sublimation)

    elseif new == 'Resting' then
    equip(sets.Resting)
    end
    end


    doesnt work

  14. #254

    Quote Originally Posted by Neoex View Post
    Want it to put my Sublimation Set on if my Sublimation is charging
    use buff "Sublimation: Activated"

  15. #255
    Cerberus
    Join Date
    Nov 2008
    Posts
    419
    BG Level
    4
    FFXI Server
    Cerberus

    so your saying

    elseif buff "Sublimation: Activated" then


    still cant get it to work

  16. #256

    Quote Originally Posted by Neoex View Post
    so your saying

    elseif buff "Sublimation: Activated" then


    still cant get it to work
    in the buff_change function use
    Code:
    if name == "Sublimation: Activated" then
        if gain then
        --equip and lock gear
        else
        --unlock and equip gear you want normaly
        end
    end
    else where use
    Code:
    buffactive["Sublimation: Activated"]

  17. #257
    Cerberus
    Join Date
    Nov 2008
    Posts
    419
    BG Level
    4
    FFXI Server
    Cerberus

    Code:
    	sets.Idle = {}
    	sets.Idle.Refresh = {
    			main="Keraunos",
    			sub="Niobid strap",
    			ammo="Iron Gobbet",
    			head="Wivre Hairpin",
    			neck="Twilight Torque",
    			ear1="Moonshade Earring",
    			ear2="Barkorole earring",
    			body="Helios Jacket",
    			hands="Serpentes Cuffs",
    			ring1="Defending Ring",
    			ring2="Dark Ring",
    			back="Shadow Mantle",
    			waist="Witful belt",
    			legs="Assiduity pants +1",
    			feet="Herald's Gaiters"}
    	sets.Idle.Movement = set_combine(sets.Idle.Refresh,{
    						feet="Herald's Gaiters"})
    	sets.Idle.Sublimation = set_combine(sets.Idle.Refresh,{
    						body="Pedagogy gown"})
    Code:
    function buff_change(buff, gain_or_lose)
    	buff = string.lower(buff)
    	if buff == "aftermath: lv.3" then -- AM3 Timer/Countdown --
    		if gain then
    			send_command('timers create "Aftermath: Lv.3" 180 down;wait 120;input /echo Aftermath: Lv.3 [WEARING OFF IN 60 SEC.];wait 30;input /echo Aftermath: Lv.3 [WEARING OFF IN 30 SEC.];wait 20;input /echo Aftermath: Lv.3 [WEARING OFF IN 10 SEC.]')
    		else
    			send_command('timers delete "Aftermath: Lv.3"')
    			add_to_chat(123,'AM3: [OFF]')
    		end
    	elseif buff == 'weakness' then -- Weakness Timer --
    		if gain then
    			send_command('timers create "Weakness" 300 up')
    		else
    			send_command('timers delete "Weakness"')
    		end
    	end
    
    	if name == "Sublimation: Activated" then
        if gain then
        equip(sets.Idle.Sublimation)
        else
        equip(sets.Idle.Refresh)
    		end
    	end
        
    	if not midaction() then
    		status_change(player.status)
    	end
    end
    still not working

  18. #258

    Quote Originally Posted by Neoex View Post
    ....
    [/Code]still not working
    here

    Code:
    function buff_change(name,gain,buff_table)
        if name == "Aftermath: Lv.3" then -- AM3 Timer/Countdown --
            if gain then
                send_command('timers create "Aftermath: Lv.3" 180 down;wait 120;input /echo Aftermath: Lv.3 [WEARING OFF IN 60 SEC.];wait 30;input /echo Aftermath: Lv.3 [WEARING OFF IN 30 SEC.];wait 20;input /echo Aftermath: Lv.3 [WEARING OFF IN 10 SEC.]')
            else
                send_command('timers delete "Aftermath: Lv.3"')
                add_to_chat(123,'AM3: [OFF]')
            end
        elseif name == 'weakness' then -- Weakness Timer --
            if gain then
                send_command('timers create "Weakness" 300 up')
            else
                send_command('timers delete "Weakness"')
            end
        elseif name == "Sublimation: Activated" then
            if gain then
                equip(sets.Idle.Sublimation)
            else
                equip(sets.Idle.Refresh)
            end
        end
        if not midaction() then
            status_change(player.status)
        end
    end

  19. #259
    Cerberus
    Join Date
    Nov 2008
    Posts
    419
    BG Level
    4
    FFXI Server
    Cerberus

    I give, it just puts my refresh set on, not the Sublimation set

  20. #260

    Quote Originally Posted by Neoex View Post
    I give, it just puts my refresh set on, not the Sublimation set
    the only gear you chang in you Sublimation set is the body
    so try this
    Code:
        elseif name == "Sublimation: Activated" then
            if gain then
                equip(body="Pedagogy gown")--equip(body="Pedagogy gown",head="Acad. Mortar. +1")
                disable("body")--disable("body","head")
            else
                enable("body")--enable("body","head")
                equip(sets.Idle.Refresh)
            end
    also are you using motes include or basic gearswap

Similar Threads

  1. Spellcast Shop Thread
    By Yugl in forum FFXI: Everything
    Replies: 232
    Last Post: 2014-03-18, 04:47
  2. ongoing attendance thread
    By berticus in forum FFXI: Everything
    Replies: 77
    Last Post: 2005-02-21, 09:55
  3. Wiffleball 2.0 [ Dynamis Attendance thread ]
    By Medic in forum FFXI: Everything
    Replies: 1
    Last Post: 2004-08-15, 21:30