Item Search
     
BG-Wiki Search
+ Reply to Thread
Page 6 of 18 FirstFirst ... 4 5 6 7 8 16 ... LastLast
Results 101 to 120 of 358

Thread: Gearswap Shop Thread     submit to reddit submit to twitter

  1. #101
    Melee Summoner
    Join Date
    Feb 2009
    Posts
    30
    BG Level
    1

    Quote Originally Posted by Motenten View Post
    Despite much reluctance, added a rng lua. It's refined from one of the ones that were based on mine (KBeezie's, I think) after being run through an LS member's hands, and having to fix a bunch of issues that resulted. It's in the standard repository.

    Since I don't have rng levelled, myself, there will be very little maintenance done on this file, aside from comments and such. However it should be adequate if anyone wants to make use of it. After a bit of testing, it seems to have fixed all the major issues people have mentioned about rng luas, lately.
    Not sure exactly why, but the SCH Lua which was working perfectly a couple weeks ago, now it isn't switching gear when I use a JA. Also I built a RATT set for my thf, The LUA is working great even switching gear on JA's, however I cant figure out why it wont switch to my RATT set. I tried switching between rng modes and no gearswaps are happening at all. Not sure why. Both the SCH and THF LUA's are carbon copies of what you have posted, with minor gear changes here and there.

  2. #102
    Smells like Onions
    Join Date
    May 2014
    Posts
    3
    BG Level
    0

    so today, all of a sudden, i'm getting a strange gearswap error ... i keep seeing the following repeating whenever i engage a mob:

    range 2 false
    ammo 3 false

    i also noticed that (on thf) my TH tag swap doesn't work at all. what am i missing?


    here is my thf.lua file ...
    Spoiler: show
    -------------------------------------------------------------------------------------------------------------------
    -- Initialization function that defines sets and variables to be used.
    -------------------------------------------------------------------------------------------------------------------

    -- IMPORTANT: Make sure to also get the Mote-Include.lua file (and its supplementary files) to go with this.

    -- Initialization function for this job file.
    function get_sets()
    -- Load and initialize the include file.
    include('Mote-Include.lua')
    end

    -- Setup vars that are user-independent.
    function job_setup()
    state.Buff['Sneak Attack'] = buffactive['sneak attack'] or false
    state.Buff['Trick Attack'] = buffactive['trick attack'] or false
    state.Buff['Feint'] = buffactive['feint'] or false

    -- TH mode handling
    options.TreasureModes = {'None','Tag','SATA','Fulltime'}
    state.TreasureMode = 'Tag'

    -- Tracking vars for TH.
    tagged_mobs = T{}
    state.th_gear_is_locked = false
    state.show_th_message = false

    -- JA IDs for actions that always have TH: Provoke, Animated Flourish
    info.ja_ids = S{35, 204}
    -- Unblinkable JA IDs for actions that always have TH: Quick/Box/Stutter Step, Desperate/Violent Flourish
    info.u_ja_ids = S{201, 202, 203, 205, 207}

    -- Register events to allow us to manage TH application.
    windower.register_event('target change', on_target_change)
    windower.raw_register_event('action', on_action)
    windower.raw_register_event('action message', on_action_message)
    end


    -- Setup vars that are user-dependent. Can override this function in a sidecar file.
    function user_setup()
    -- Options: Override default values
    options.OffenseModes = {'Normal', 'Acc'}
    options.DefenseModes = {'Normal', 'Evasion', 'PDT'}
    options.RangedModes = {'Normal', 'Acc'}
    options.WeaponskillModes = {'Normal', 'Acc'}
    options.IdleModes = {'Normal'}
    options.RestingModes = {'Normal'}
    options.PhysicalDefenseModes = {'Evasion', 'PDT'}
    options.MagicalDefenseModes = {'MDT'}

    state.RangedMode = 'Normal'
    state.Defense.PhysicalMode = 'Evasion'

    gear.default.weaponskill_neck = "Asperity Necklace"
    gear.default.weaponskill_waist = "Caudata Belt"

    -- Additional local binds
    send_command('bind ^` input /ja "Flee" <me>')
    send_command('bind ^= gs c cycle treasuremode')
    send_command('bind !- gs c cycle targetmode')

    -- Default macro set/book
    set_macro_page(2, 4)
    end


    -- Called when this job file is unloaded (eg: job change)
    function job_file_unload()
    send_command('unbind ^`')
    send_command('unbind !-')
    end

    -- Define sets and vars used by this job file.
    function init_gear_sets()
    --------------------------------------
    -- Special sets
    --------------------------------------

    sets.TreasureHunter = {hands="Plunderer's Armlets", feet="Raider's Poulaines +2"}
    sets.Kiting = {feet="Fajin boots"}

    sets.buff['Sneak Attack'] = {
    head="Pillager's Bonnet",neck="Asperity Necklace",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Pillager's Vest",hands="Pillager's Armlets",ring1="Rajas Ring",ring2="Epona's Ring",
    back="Atheling Mantle",waist="Hurch'lan sash",legs="Pillager's Culottes",feet="Iuitl Gaiters +1"}

    sets.buff['Trick Attack'] = {
    head="Pillager's Bonnet +1",neck="Asperity Necklace",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Pillager's Vest +1",hands="Pillager's Armlets +1",ring1="Stormsoul Ring",ring2="Epona's Ring",
    back="Atheling Mantle",waist="Hurch'lan sash",legs="Pillager's Culottes +1",feet="Plunderer's Poulaines"}

    --------------------------------------
    -- Precast sets
    --------------------------------------

    -- Precast sets to enhance JAs
    sets.precast.JA['Collaborator'] = {head="Raider's Bonnet +2"}
    sets.precast.JA['Accomplice'] = {head="Raider's Bonnet +2"}
    sets.precast.JA['Flee'] = {feet="Pillager's Poulaines"}
    sets.precast.JA['Hide'] = {body="Pillager's Vest"}
    sets.precast.JA['Conspirator'] = {body="Raider's Vest +2"}
    sets.precast.JA['Steal'] = {head="Plunderer's Bonnet",hands="Pillager's Armlets",legs="Pillager's Culottes",feet="Pillager's Poulaines"}
    sets.precast.JA['Despoil'] = {legs="Raider's Culottes +2",feet="Raider's Poulaines +2"}
    sets.precast.JA['Perfect Dodge'] = {hands="Plunderer's Armlets"}
    sets.precast.JA['Feint'] = {legs="Plunderer's Culottes"}

    sets.precast.JA['Sneak Attack'] = sets.buff['Sneak Attack']
    sets.precast.JA['Trick Attack'] = sets.buff['Trick Attack']

    -- Waltz set (chr and vit)
    sets.precast.Waltz = {
    head="Whirlpool Mask",
    body="Pillager's Vest",hands="Pillager's Armlets",ring1="Terrasoul ring",ring2="Terrasoul ring",
    back="Iximulew Cape",legs="Pillager's Culottes",feet="Plunderer's Poulaines"}

    -- Don't need any special gear for Healing Waltz.
    sets.precast.Waltz['Healing Waltz'] = {}

    -- TH actions
    sets.precast.Step = sets.precast.TreasureHunter
    sets.precast.Flourish1 = sets.precast.TreasureHunter
    sets.precast.JA.Provoke = sets.precast.TreasureHunter

    -- Fast cast sets for spells

    sets.precast.FC = {ear2="Loquacious Earring",ring1="Prolix Ring"}

    sets.precast.FC.Utsusemi = set_combine(sets.precast.FC, {neck="Magoraga Beads"})

    -- Weaponskill sets

    -- Default set for any weaponskill that isn't any more specifically defined
    sets.precast.WS = {ammo="Thew Bomblet",
    head="Whirlpool Mask",neck="Nefarious collar",ear1="Bladeborn Earring",ear2="Steelflash Earring",
    body="Pillager's Vest",hands="Pillager's Armlets",ring1="Rajas Ring",ring2="Epona's Ring",
    back="Atheling Mantle",waist="Caudata Belt",legs="Plunderer's Culottes",feet="Plunderer's Poulaines"}
    sets.precast.WS.Acc = set_combine(sets.precast.WS, {ammo="Honed Tathlum", back="Letalis Mantle"})

    -- Specific weaponskill sets. Uses the base set if an appropriate WSMod version isn't found.
    sets.precast.WS['Exenterator'] = set_combine(sets.precast.WS, {legs="Nahtirah Trousers"})
    sets.precast.WS['Exenterator'].Acc = set_combine(sets.precast.WS['Exenterator'], {ammo="Honed Tathlum", back="Letalis Mantle"})
    sets.precast.WS['Exenterator'].SA = set_combine(sets.precast.WS['Exenterator'].Mod, {ammo="Thew Bomblet"})
    sets.precast.WS['Exenterator'].TA = set_combine(sets.precast.WS['Exenterator'].Mod, {ammo="Thew Bomblet"})
    sets.precast.WS['Exenterator'].SATA = set_combine(sets.precast.WS['Exenterator'].Mod, {ammo="Thew Bomblet"})

    sets.precast.WS['Dancing Edge'] = set_combine(sets.precast.WS, {})
    sets.precast.WS['Dancing Edge'].Acc = set_combine(sets.precast.WS['Dancing Edge'], {ammo="Honed Tathlum", back="Letalis Mantle"})
    sets.precast.WS['Dancing Edge'].SA = set_combine(sets.precast.WS['Dancing Edge'].Mod, {ammo="Thew Bomblet"})
    sets.precast.WS['Dancing Edge'].TA = set_combine(sets.precast.WS['Dancing Edge'].Mod, {ammo="Thew Bomblet"})
    sets.precast.WS['Dancing Edge'].SATA = set_combine(sets.precast.WS['Dancing Edge'].Mod, {ammo="Thew Bomblet"})

    sets.precast.WS['Evisceration'] = set_combine(sets.precast.WS, {ammo="Thew Bomblet",neck="Rancor Collar"})
    sets.precast.WS['Evisceration'].Acc = set_combine(sets.precast.WS['Evisceration'], {ammo="Honed Tathlum", back="Letalis Mantle"})
    sets.precast.WS['Evisceration'].SA = set_combine(sets.precast.WS['Evisceration'].Mod, {})
    sets.precast.WS['Evisceration'].TA = set_combine(sets.precast.WS['Evisceration'].Mod, {})
    sets.precast.WS['Evisceration'].SATA = set_combine(sets.precast.WS['Evisceration'].Mod, {})

    sets.precast.WS["Rudra's Storm"] = set_combine(sets.precast.WS, {head="Pillager's Bonnet"})
    sets.precast.WS["Rudra's Storm"].Acc = set_combine(sets.precast.WS["Rudra's Storm"], {ammo="Honed Tathlum", back="Letalis Mantle"})
    sets.precast.WS["Rudra's Storm"].SA = set_combine(sets.precast.WS["Rudra's Storm"].Mod, {ammo="Thew Bomblet",
    body="Pillager's Vest",legs="Pillager's Culottes"})
    sets.precast.WS["Rudra's Storm"].TA = set_combine(sets.precast.WS["Rudra's Storm"].Mod, {ammo="Thew Bomblet",
    body="Pillager's Vest",legs="Pillager's Culottes"})
    sets.precast.WS["Rudra's Storm"].SATA = set_combine(sets.precast.WS["Rudra's Storm"].Mod, {ammo="Thew Bomblet",
    body="Pillager's Vest",legs="Pillager's Culottes"})

    sets.precast.WS["Shark Bite"] = set_combine(sets.precast.WS, {head="Pillager's Bonnet"})
    sets.precast.WS['Shark Bite'].Acc = set_combine(sets.precast.WS['Shark Bite'], {ammo="Honed Tathlum", back="Letalis Mantle"})
    sets.precast.WS['Shark Bite'].SA = set_combine(sets.precast.WS['Shark Bite'].Mod, {ammo="Thew Bomblet",
    body="Pillager's Vest",legs="Pillager's Culottes"})
    sets.precast.WS['Shark Bite'].TA = set_combine(sets.precast.WS['Shark Bite'].Mod, {ammo="Thew Bomblet",
    body="Pillager's Vest",legs="Pillager's Culottes"})
    sets.precast.WS['Shark Bite'].SATA = set_combine(sets.precast.WS['Shark Bite'].Mod, {ammo="Thew Bomblet",
    body="Pillager's Vest",legs="Pillager's Culottes"})

    sets.precast.WS['Mandalic Stab'] = set_combine(sets.precast.WS, {head="Pillager's Bonnet"})
    sets.precast.WS['Mandalic Stab'].Acc = set_combine(sets.precast.WS['Mandalic Stab'], {ammo="Honed Tathlum", back="Letalis Mantle"})
    sets.precast.WS['Mandalic Stab'].SA = set_combine(sets.precast.WS['Mandalic Stab'].Mod, {ammo="Thew Bomblet",
    body="Pillager's Vest",legs="Pillager's Culottes"})
    sets.precast.WS['Mandalic Stab'].TA = set_combine(sets.precast.WS['Mandalic Stab'].Mod, {ammo="Thew Bomblet",
    body="Pillager's Vest",legs="Pillager's Culottes"})
    sets.precast.WS['Mandalic Stab'].SATA = set_combine(sets.precast.WS['Mandalic Stab'].Mod, {ammo="Thew Bomblet",
    body="Pillager's Vest",legs="Pillager's Culottes"})

    sets.precast.WS['Aeolian Edge'] = {ammo="Jukukik Feather",
    neck="Stoicheion Medal",ear1="Friomisi Earring",ear2="Hecate's Earring",
    body="Pillager's Vest",hands="Plunderer's Armlets",ring1="Rajas Ring",
    back="Toro Cape",feet="Raider's Poulaines +2"}

    sets.precast.WS['Aeolian Edge'].TH = set_combine(sets.precast.WS['Aeolian Edge'], sets.TreasureHunter)

    --------------------------------------
    -- Midcast sets
    --------------------------------------

    sets.midcast.FastRecast = {
    head="Whirlpool Mask",ear2="Loquacious Earring",
    body="Pillager's Vest",hands="Pillager's Armlets",
    legs="Kaabnax Trousers"}

    -- Specific spells
    sets.midcast.Utsusemi = {
    head="Whirlpool Mask",ear2="Loquacious Earring",
    body="Pillager's Vest",hands="Pillager's Armlets",ring1="Beeline Ring",
    legs="Kaabnax Trousers"}

    -- Ranged gear -- acc + TH
    sets.midcast.RA = {
    head="Whirlpool Mask",ear1="Clearview Earring",ear2="Volley Earring",
    ring1="Beeline Ring",ring2="Hajduk Ring",
    back="Libeccio Mantle",waist="Aquiline Belt",legs="Nahtirah Trousers"}

    sets.midcast.RA.Acc = {
    head="Pillager's Bonnet",ear1="Clearview Earring",ear2="Volley Earring",
    hands="Buremte Gloves",ring1="Beeline Ring",ring2="Hajduk Ring",
    back="Libeccio Mantle",waist="Aquiline Belt",feet="Pillager's Poulaines +1"}

    --------------------------------------
    -- Idle/resting/defense sets
    --------------------------------------

    -- Resting sets
    sets.resting = {ring1="Sheltered Ring",ring2="Paguroidea Ring"}


    -- Idle sets (default idle set not needed since the other three are defined, but leaving for testing purposes)

    sets.idle = {main="Mandau",sub="Sandung",ammo="Thew Bomblet",
    head="Felistris Mask",neck="Asperity Necklace",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Pillager's Vest",hands="Pillager's Armlets",ring1="Sheltered ring",ring2="Paguroidea Ring",
    back="Atheling Mantle",waist="Windbuffet belt",legs="Pillager's culottes",feet="Fajin boots"}

    sets.idle.Town = {main="Mandau",sub="Sandung",ammo="Thew Bomblet",
    head="Felistris Mask",neck="Asperity Necklace",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Pillager's Vest",hands="Pillager's Armlets",ring1="Sheltered ring",ring2="Paguroidea Ring",
    back="Atheling Mantle",waist="Windbuffet belt",legs="Pillager's culottes",feet="Fajin boots"}

    sets.idle.Weak = {main="Mandau",sub="Sandung",ammo="Thew Bomblet",
    head="Felistris Mask",neck="Asperity Necklace",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Pillager's Vest",hands="Pillager's Armlets",ring1="Sheltered ring",ring2="Paguroidea Ring",
    back="Atheling Mantle",waist="Windbuffet belt",legs="Pillager's culottes",feet="Fajin boots"}

    -- Defense sets

    sets.defense.Evasion = {
    head="Pillager's Bonnet +1",neck="Ej Necklace",
    body="Qaaxo Harness",hands="Pillager's Armlets +1",ring1="Beeline Ring",ring2="Dark Ring",
    back="Fravashi Mantle",waist="Flume Belt",legs="Kaabnax Trousers",feet="Iuitl Gaiters +1"}

    sets.defense.PDT = {ammo="Iron Gobbet",
    head="Pillager's Bonnet +1",neck="Twilight Torque",
    body="Iuitl Vest",hands="Pillager's Armlets +1",ring1="Beeline Ring",ring2="Dark Ring",
    back="Iximulew Cape",waist="Flume Belt",legs="Pillager's Culottes +1",feet="Iuitl Gaiters +1"}

    sets.defense.MDT = {ammo="Demonry Stone",
    head="Pillager's Bonnet +1",neck="Twilight Torque",
    body="Pillager's Vest +1",hands="Pillager's Armlets +1",ring1="Dark Ring",ring2="Shadow Ring",
    back="Engulfer Cape",waist="Flume Belt",legs="Pillager's Culottes +1",feet="Iuitl Gaiters +1"}

    --------------------------------------
    -- Melee sets
    --------------------------------------

    -- Normal melee group
    sets.engaged = {ammo="Thew Bomblet",
    head="Felistris Mask",neck="Asperity Necklace",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Plunderer's Vest",hands="Pillager's Armlets",ring1="Rajas Ring",ring2="Epona's Ring",
    back="Atheling Mantle",waist="Windbuffet belt",legs="Pillager's culottes",feet="Plunderer's Poulaines"}
    sets.engaged.Acc = {ammo="Honed Tathlum",
    head="Whirlpool Mask",neck="Ej Necklace",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Pillager's Vest +1",hands="Pillager's Armlets +1",ring1="Rajas Ring",ring2="Epona's Ring",
    back="Letalis Mantle",waist="Hurch'lan Sash",legs="Manibozho Brais",feet="Qaaxo Leggings"}
    sets.engaged.Evasion = {ammo="Thew Bomblet",
    head="Felistris Mask",neck="Ej Necklace",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Qaaxo Harness",hands="Pillager's Armlets +1",ring1="Beeline Ring",ring2="Epona's Ring",
    back="Fravashi Mantle",waist="Patentia Sash",legs="Kaabnax Trousers",feet="Qaaxo Leggings"}
    sets.engaged.Acc.Evasion = {ammo="Honed Tathlum",
    head="Whirlpool Mask",neck="Ej Necklace",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Pillager's Vest +1",hands="Pillager's Armlets +1",ring1="Beeline Ring",ring2="Epona's Ring",
    back="Letalis Mantle",waist="Hurch'lan Sash",legs="Kaabnax Trousers",feet="Qaaxo Leggings"}
    sets.engaged.PDT = {ammo="Thew Bomblet",
    head="Felistris Mask",neck="Twilight Torque",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Iuitl Vest",hands="Pillager's Armlets +1",ring1="Dark Ring",ring2="Epona's Ring",
    back="Iximulew Cape",waist="Patentia Sash",legs="Iuitl Tights",feet="Qaaxo Leggings"}
    sets.engaged.Acc.PDT = {ammo="Honed Tathlum",
    head="Whirlpool Mask",neck="Twilight Torque",ear1="Dudgeon Earring",ear2="Heartseeker Earring",
    body="Iuitl Vest",hands="Pillager's Armlets +1",ring1="Dark Ring",ring2="Epona's Ring",
    back="Letalis Mantle",waist="Hurch'lan Sash",legs="Iuitl Tights",feet="Qaaxo Leggings"}

    end


    -------------------------------------------------------------------------------------------------------------------
    -- Job-specific hooks that are called to process player actions at specific points in time.
    -------------------------------------------------------------------------------------------------------------------

    function job_precast(spell, action, spellMap, eventArgs)
    if spell.type == 'Waltz' then
    refine_waltz(spell, action, spellMap, eventArgs)
    end
    end


    -- Run after the general precast() is done.
    function job_post_precast(spell, action, spellMap, eventArgs)
    if spell.type == 'Step' or spell.type == 'Flourish1' then
    if state.TreasureMode ~= 'None' then
    equip(sets.TreasureHunter)
    end
    elseif spell.english=='Sneak Attack' or spell.english=='Trick Attack' then
    if state.TreasureMode == 'SATA' or state.TreasureMode == 'Fulltime' then
    equip(sets.TreasureHunter)
    end
    end
    end

    -- Run after the general midcast() set is constructed.
    function job_post_midcast(spell, action, spellMap, eventArgs)
    if state.TreasureMode ~= 'None' then
    if (spell.action_type == 'Ranged Attack' or spell.action_type == 'Magic') and spell.target.type == 'MONSTER' then
    equip(sets.TreasureHunter)
    end
    end
    end

    -- Set eventArgs.handled to true if we don't want any automatic gear equipping to be done.
    function job_aftercast(spell, action, spellMap, eventArgs)
    if state.Buff[spell.english] ~= nil then
    state.Buff[spell.english] = not spell.interrupted or buffactive[spell.english]
    end

    -- Update the state of certain buff JAs if the action wasn't interrupted.
    if not spell.interrupted then
    -- If this wasn't an action that would have used up SATA/Feint, make sure to keep gear on.
    if spell.type ~= 'WeaponSkill' and spell.type ~= 'Step' then
    -- If SA/TA/Feint are active, put appropriate gear back on (including TH gear).
    check_buff('Sneak Attack', eventArgs)
    check_buff('Trick Attack', eventArgs)
    check_buff('Feint', eventArgs)
    end
    end
    end


    -- Refactor buff checks from aftercast
    function check_buff(buff_name, eventArgs)
    if state.Buff[buff_name] then
    equip(sets.buff[buff_name] or {})
    if state.TreasureMode == 'SATA' or state.TreasureMode == 'Fulltime' then
    equip(sets.TreasureHunter)
    end
    eventArgs.handled = true
    end
    end


    -------------------------------------------------------------------------------------------------------------------
    -- Customization hooks.
    -------------------------------------------------------------------------------------------------------------------

    function get_custom_wsmode(spell, spellMap, defaut_wsmode)
    local wsmode

    if state.Buff['Sneak Attack'] then
    wsmode = 'SA'
    end
    if state.Buff['Trick Attack'] then
    wsmode = (wsmode or '') .. 'TA'
    end

    if spell.english == 'Aeolian Edge' and state.TreasureMode ~= 'None' then
    wsmode = 'TH'
    end

    return wsmode
    end

    function customize_idle_set(idleSet)
    if player.hpp < 80 then
    idleSet = set_combine(idleSet, sets.ExtraRegen)
    end

    return idleSet
    end

    function customize_melee_set(meleeSet)
    if state.TreasureMode == 'Fulltime' then
    meleeSet = set_combine(meleeSet, sets.TreasureHunter)
    end

    return meleeSet
    end

    -------------------------------------------------------------------------------------------------------------------
    -- General hooks for change events.
    -------------------------------------------------------------------------------------------------------------------

    -- Called if we change any user state fields.
    function job_state_change(stateField, newValue, oldValue)
    if stateField == 'TreasureMode' then
    if newValue == 'None' then
    if state.show_th_message then add_to_chat(123,'TH Mode set to None. Unlocking gear.') end
    unlock_TH()
    elseif oldValue == 'None' then
    TH_for_first_hit()
    end
    end
    end


    -- Called when a player gains or loses a buff.
    -- buff == buff gained or lost
    -- gain == true if the buff was gained, false if it was lost.
    function job_buff_change(buff, gain)
    if state.Buff[buff] ~= nil then
    state.Buff[buff] = gain
    handle_equipping_gear(player.status)
    end
    end


    -- On engaging a mob, attempt to add TH gear. For any other status change, unlock TH gear slots.
    function job_status_change(newStatus, oldStatus, eventArgs)
    if newStatus == 'Engaged' then
    if state.show_th_message then add_to_chat(123,'Engaging '..player.target.id..'.') end
    TH_for_first_hit()
    else
    if state.show_th_message then add_to_chat(123,'Disengaging. Unlocking TH.') end
    unlock_TH()
    end
    end


    -- On changing targets, attempt to add TH gear.
    function on_target_change(target_index)
    -- Only care about changing targets while we're engaged, either manually or via current target death.
    if player.status == 'Engaged' then
    -- If current player.target.index isn't the same as the target_index parameter,
    -- that indicates that the sub-target cursor is being used. Ignore it.
    if player.target.index == target_index then
    if state.show_th_message then add_to_chat(123,'Changing target to '..player.target.id..'.') end
    TH_for_first_hit()
    handle_equipping_gear(player.status)
    end
    end
    end


    -- Clear out the entire tagged mobs table when zoning.
    function on_zone_change(new_zone, old_zone)
    if state.show_th_message then add_to_chat(123,'Zoning. Clearing tagged mobs table.') end
    tagged_mobs:clear()
    end


    -------------------------------------------------------------------------------------------------------------------
    -- Various update events.
    -------------------------------------------------------------------------------------------------------------------

    -- Called by the 'update' self-command.
    function job_update(cmdParams, eventArgs)
    if player.status ~= 'Engaged' or cmdParams[1] == 'tagged' then
    unlock_TH()
    end

    if state.show_th_message and cmdParams[1] == 'user' then
    print_set(tagged_mobs, 'Tagged mobs')
    end
    end

    -- Called any time we attempt to handle automatic gear equips (ie: engaged or idle gear).
    function job_handle_equipping_gear(playerStatus, eventArgs)
    -- Check that ranged slot is locked, if necessary
    check_range_lock()

    -- Don't allow normal gear equips if SA/TA/Feint is active.
    if state.Buff['Sneak Attack'] or state.Buff['Trick Attack'] or state.Buff['Feint'] then
    eventArgs.handled = true
    end
    end


    -- Function to display the current relevant user state when doing an update.
    -- Return true if display was handled, and you don't want the default info shown.
    function display_current_job_state(eventArgs)
    local defenseString = ''
    if state.Defense.Active then
    local defMode = state.Defense.PhysicalMode
    if state.Defense.Type == 'Magical' then
    defMode = state.Defense.MagicalMode
    end

    defenseString = 'Defense: '..state.Defense.Type..' '..defMode..' '
    end

    add_to_chat(122,'Melee: '..state.OffenseMode..'/'..state.DefenseMode..' WS: '..state.WeaponskillMode..' '..
    defenseString..'Kiting: '..on_off_names[state.Kiting]..' TH: '..state.TreasureMode)

    eventArgs.handled = true
    end

    -------------------------------------------------------------------------------------------------------------------
    -- Utility functions specific to this job.
    -------------------------------------------------------------------------------------------------------------------

    -- Function to lock the ranged slot if we have a ranged weapon equipped.
    function check_range_lock()
    if player.equipment.range ~= 'empty' then
    disable('range', 'ammo')
    else
    enable('range', 'ammo')
    end
    end


    -- Select default macro book on initial load or subjob change.
    function select_default_macro_book()
    -- Default macro set/book
    if player.sub_job == 'DNC' then
    set_macro_page(2, 4)
    elseif player.sub_job == 'WAR' then
    set_macro_page(1, 4)
    elseif player.sub_job == 'NIN' then
    set_macro_page(1, 4)
    else
    set_macro_page(1, 4)
    end
    end


    -------------------------------------------------------------------------------------------------------------------
    -- Functions and events to support TH handling.
    -------------------------------------------------------------------------------------------------------------------

    -- Set locked TH flag to true, and disable relevant gear slots.
    function lock_TH()
    state.th_gear_is_locked = true
    for slot,item in pairs(sets.TreasureHunter) do
    disable(slot)
    end
    end

    -- Set locked TH flag to false, and enable relevant gear slots.
    function unlock_TH()
    state.th_gear_is_locked = false
    for slot,item in pairs(sets.TreasureHunter) do
    enable(slot)
    end
    end

    -- For any active TH mode, if we haven't already tagged this target, equip TH gear and lock slots until we manage to hit it.
    function TH_for_first_hit()
    if state.TreasureMode ~= 'None' and not tagged_mobs[player.target.id] then
    if state.show_th_message then add_to_chat(123,'Prepping for first hit on '..player.target.id..'.') end
    equip(sets.TreasureHunter)
    lock_TH()
    else
    if state.show_th_message then add_to_chat(123,'Prepping for first hit on '..player.target.id..'. Has already been tagged. Unlocking TH.') end
    unlock_TH()
    end
    end


    -- On any action event, mark mobs that we tag with TH. Also, update the last time tagged mobs were acted on.
    function on_action(action)
    --add_to_chat(123,'cat='..action.category..',param=' ..action.param)
    -- If player takes action, adjust TH tagging information
    if action.actor_id == player.id and state.TreasureMode ~= 'None' then
    -- category == 1=melee, 2=ranged, 3=weaponskill, 4=spell, 6=job ability, 14=unblinkable JA
    if state.TreasureMode == 'Fulltime' or
    (state.TreasureMode == 'SATA' and (state.Buff['Sneak Attack'] or state.Buff['Trick Attack']) and (action.category == 1 or action.category == 3)) or
    (state.TreasureMode == 'Tag' and action.category == 1 and state.th_gear_is_locked) or -- Tagging with a melee hit
    (action.category == 2 or action.category == 4) or -- Any ranged or magic action
    (action.category == 3 and action.param == 30) or -- Aeolian Edge
    (action.category == 6 and info.ja_ids:contains(action.param)) or -- Provoke, Animated Flourish
    (action.category == 14 and info.u_ja_ids:contains(action.param)) -- Quick/Box/Stutter Step, Desperate/Violent Flourish
    then
    for index,target in pairs(action.targets) do
    if not tagged_mobs[target.id] and state.show_th_message then
    add_to_chat(123,'Mob '..target.id..' hit. Adding to tagged mobs table.')
    end
    tagged_mobs[target.id] = os.time()
    end

    if state.th_gear_is_locked then
    send_command('gs c update tagged')
    end
    end
    elseif tagged_mobs[action.actor_id] then
    -- If mob acts, keep an update of last action time for TH bookkeeping
    tagged_mobs[action.actor_id] = os.time()
    else
    -- If anyone else acts, check if any of the targets are our tagged mobs
    for index,target in pairs(action.targets) do
    if tagged_mobs[target.id] then
    tagged_mobs[target.id] = os.time()
    end
    end
    end

    cleanup_tagged_mobs()
    end


    -- If we're notified of a mob's death, remove it from the list of tagged mobs.
    function on_action_message(actor_id, target_id, actor_index, target_index, message_id, param_1, param_2, param_3)
    -- Remove mobs that die from our tagged mobs list.
    if tagged_mobs[target_id] then
    -- 6 == actor defeats target
    -- 20 == target falls to the ground
    if message_id == 6 or message_id == 20 then
    if state.show_th_message then add_to_chat(123,'Mob '..target_id..' died. Removing from tagged mobs table.') end
    tagged_mobs[target_id] = nil
    end
    end
    end


    -- Remove mobs that we've marked as tagged with TH if we haven't seen any activity from or on them
    -- for over 3 minutes. This is to handle deagros, player deaths, or other random stuff where the
    -- mob is lost, but doesn't die.
    function cleanup_tagged_mobs()
    -- If it's been more than 3 minutes since an action on or by a tagged mob,
    -- remove them from the tagged mobs list.
    local current_time = os.time()
    local remove_mobs = S{}
    -- Search list and flag old entries.
    for target_id,action_time in pairs(tagged_mobs) do
    local time_since_last_action = current_time - action_time
    if time_since_last_action > 180 then
    remove_mobs:add(target_id)
    if state.show_th_message then add_to_chat(123,'Over 3 minutes since last action on mob '..target_id..'. Removing from tagged mobs list.') end
    end
    end
    -- Clean out mobs flagged for removal.
    for mob_id,_ in pairs(remove_mobs) do
    tagged_mobs[mob_id] = nil
    end
    end

  3. #103
    An exploitable mess of a card game
    Join Date
    Sep 2008
    Posts
    13,258
    BG Level
    9
    FFXIV Character
    Gouka Mekkyaku
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    If you need help with your GS file, go to the GS Help thread. This thread is for contributing new GS files.

  4. #104
    Fake Numbers
    Join Date
    Oct 2012
    Posts
    79
    BG Level
    2
    FFXI Server
    Lakshmi

    Samurai: http://pastebin.com/qgurFHvV

    Features:
    • Keybindings for Toggle Commands.

    • F9-(Standard) TPset1,TPset2, TPset3, TPset4
    • F10-(Accuracy) TPAcc1, TPAcc2
    • F11-(Melee Accuracy WS) Standard,Accuracy,
    • F12-(DT) Melee Hybrid, MDEF

    • ALT+F10 -(Ranged TP) Reg, Acc, HiAcc
    • ALT+F11-(Ranged WS) Reg, Acc, HiAcc
    • ALT+F12- Turtle+Kite(Danzo+PDT set)&(Danzo+MDT set)

    • ctrl+` = Hasso
    • alt+` = Seigan



    Also has toggle in reverse order of the TP index assigned to F9:
    • Macro line: /console gs c toggle dTP set
    • Chat line: //gs c toggle dTP set
    • Keybind: CTRL+F9

  5. #105
    An exploitable mess of a card game
    Join Date
    Sep 2008
    Posts
    13,258
    BG Level
    9
    FFXIV Character
    Gouka Mekkyaku
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    Updated post.

  6. #106
    Fake Numbers
    Join Date
    Oct 2012
    Posts
    79
    BG Level
    2
    FFXI Server
    Lakshmi

    Heres two more:

    Corsair: http://pastebin.com/Q2vMERzz

    Features: Keybinds

    • F9 = Luzaf Ring On/Off
    • F10 = TP Index Toggle
    • F11 = Ranged Attack Index Toggle


    • Alt+F9 = Quick Draw Set Toggle
    • Alt+F10 = Melee WS index toggle
    • Alt+F11 = Ranged WS index toggle


    • F12 = Light Shot
    • Alt+F12 = Dark Shot



    Rune Fencer: http://pastebin.com/7tDdpebj

    Features: Keybinds
    • F9 = Gambit
    • F10= Lunge
    • F11= Swipe
    • F12= Flash


    • Alt+F9 = 2 Handed TP set toggle
    • CTRL+F9 = Dual Wield Set toggle


    • Alt+F10 = WS index toggle (Reg,ACC)
    • CTRL+F10 = Idle set Toggle


    • Alt+F12 Dimidiation

  7. #107
    An exploitable mess of a card game
    Join Date
    Sep 2008
    Posts
    13,258
    BG Level
    9
    FFXIV Character
    Gouka Mekkyaku
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    Updated post.

  8. #108
    Fake Numbers
    Join Date
    Oct 2012
    Posts
    79
    BG Level
    2
    FFXI Server
    Lakshmi

    Ranger: http://pastebin.com/XWWfajNQ

    • F9 = Ranged Attack/RA
    • F10 = Barrage
    • F11 = Coronach
    • F12 = Last Stand


    • CTRL+F9 = RA index toggle
    • CTRL+F10 = Barrage index toggle
    • CTRL+F11 = RA WS index toggle
    • CTRL+F12 = Eagle Eye Shot


    • ALT+F9 = Melee TP toggle
    • ALT+F10 = Exen Toggle


    Couple of notes. Keybinds are obviously configured to cater to a gun ranger with respect to Weaponskills. Weaponskill sets are coupled together based on Attribute modifiers ex: Coronach and Namas Arrow both being STR heavy use the same WS gear set. Same with Apex Arrow and Last Stand (AGI) etc.

    If you are familiar with the way GS works you will notice that the file is set so that if you are engaged it reverts to TP sets after an action and to the Snapshot set if you are not. This is mainly due to the fact that you can WS with out being engaged when WS commands are set to a keybind. (Gearswap hidden feature)

    I will also be adding in Evisceration and Axe Weaponskills once the tests from the recent update are in.

  9. #109
    An exploitable mess of a card game
    Join Date
    Sep 2008
    Posts
    13,258
    BG Level
    9
    FFXIV Character
    Gouka Mekkyaku
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    Updated post.

  10. #110
    Hydra
    Join Date
    Feb 2014
    Posts
    131
    BG Level
    3
    FFXI Server
    Quetzalcoatl

    Adding my RNG.lua as I've recently rebuilt it from the ground up.
    https://github.com/AlanWarren/gearsw...master/RNG.lua

    A few notes. My Rng.lua has all gear sets in the sidecar RNG_gear.lua, which is also in my github. This will make it easier for users to update rng.lua without having to edit their files.

    Features:

    Uses motes includes. These are included with windower so no action is necessary.

    Auto RA with hot key ( ctrl - ) to toggle on or off. You must fire one shot for it to begin. It will use different delays for gun and bow, as well as weapon skill at 1000tp with a preset ws depending on the weapon type. (It will continue shooting after ws )This is adjusted in the settings near the top of RNG.lua. If you set gear.Bow or gear.Gun to higher delay weapons than the default ( anni & yoichi ) then you may need to manually adjust the delay in use_ra().

    I have a lot of dynamic sets for stave, ranged weapon type, melee, dual wield, Sam sub, sam roll, decoy, and in anticipation of flurry + coursers reaching delay cap, a set for high snapshot. I plan on possibly swapping in rapidshot for precast should ranged delay cap.

    Note that you don't have to use any of the advanced sets if you don't want to. You can remove the Sam sub etc if you don't use it.

    There's a lot of additional features as well. Be sure to read the comments.

  11. #111

    this is my gearswap skill up lua
    http://pastebin.com/eu6im6HC
    instructions are included at the top of the file

    it does
    Goemancy/Handbell
    Healing
    Enhancing
    Blue Magic
    Ninjutsu
    Singing with String/Wind instraments
    Summoning

    only spells that can be used on your self are in this tool

    if you can find any blue spells that i missed please let me know like this
    spell name = <spellname>
    requires Unbridled Learning = <yes or no>

  12. #112
    An exploitable mess of a card game
    Join Date
    Sep 2008
    Posts
    13,258
    BG Level
    9
    FFXIV Character
    Gouka Mekkyaku
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    Updated.

  13. #113
    Smells like Onions
    Join Date
    Sep 2010
    Posts
    2
    BG Level
    0
    FFXI Server
    Asura

    getting a lua runtime error its in the shortcuts.lua like shieldbash and my weaponskills are bugging out. Just started happening after update

  14. #114

    Quote Originally Posted by Redrooster View Post
    getting a lua runtime error its in the shortcuts.lua like shieldbash and my weaponskills are bugging out. Just started happening after update
    if you have a bug in shortcuts you need to post it here https://github.com/Windower/Issues

    this forum is for gearswap coding help http://www.bluegartr.com/threads/119...ap-Help-Thread!
    if you gearswap code is the issue we cant help unless you post your code
    the best way to post your code is with http://pastebin.com or some other code hosting site please do not post your code fully in the forum
    if you cant post a link yet you can just post every thing after http://pastebin.com/ like for my skillup.lua(http://pastebin.com/eu6im6HC) all i would need is eu6im6HC

  15. #115

    i have updated my skill up script to fix some issues with smn skillup
    im working on making nin to allow nin tool bags to be auto used if you do not have anymore of the tools to use for the spell

  16. #116

    update on my geaswap skillup lua
    all parts should now be working

    to get it to auto use your nin toolbags thay must be in your main inventory and you must have an open space to open them to

  17. #117
    RIDE ARMOR
    Join Date
    Jun 2012
    Posts
    21
    BG Level
    1
    FFXI Server
    Asura

    DRK http://pastebin.com/AFH4mx4k

    I was wondering.

    I have Ragnarok and an Apocalypse.

    Will the aftermath on Ragnarok make it change into aftermath gear for apocalypse?

    Because this would be very unwanted :S

  18. #118
    Hydra
    Join Date
    Feb 2014
    Posts
    131
    BG Level
    3
    FFXI Server
    Quetzalcoatl

    Quote Originally Posted by Balrahn View Post
    DRK http://pastebin.com/AFH4mx4k

    I was wondering.

    I have Ragnarok and an Apocalypse.

    Will the aftermath on Ragnarok make it change into aftermath gear for apocalypse?

    Because this would be very unwanted :S
    It won't, since the sets are weapon specific. (or they can be)

    Code:
    sets.engaged.Apocalypse.AM  = { --only gets used for Apoc when aftermath up }
    
    sets.engaged.Ragnarok.AM = { -- only used for Rag with AM }
    You'll have to create the Ragnarok sets obviously.

    If you ever switch weapons while engaged, just hit F12 to update from one set to the next.

  19. #119
    I'm more gentle than I look.
    Mr. Feathers AKA Mr. Striations
    All hail Lord Yamcha

    Join Date
    Aug 2007
    Posts
    17,446
    BG Level
    9

    Would this thread be the wrong place to ask for a basic mnk ashita cast xml?

  20. #120
    BG Content
    Join Date
    Jul 2007
    Posts
    21,105
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    Yeah

+ Reply to Thread
Page 6 of 18 FirstFirst ... 4 5 6 7 8 16 ... LastLast

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