Item Search
     
BG-Wiki Search
Page 91 of 307 FirstFirst ... 41 81 89 90 91 92 93 101 141 ... LastLast
Results 1801 to 1820 of 6124
  1. #1801
    Requiescat in pace.
    Join Date
    Dec 2008
    Posts
    1,341
    BG Level
    6
    FFXI Server
    Lakshmi

    Just lost a tojil run because all of my plugins unloaded and I crashed. The fuck is this shit.

  2. #1802
    Hydra
    Join Date
    Jul 2010
    Posts
    119
    BG Level
    3
    FFXI Server
    Asura

    Anyone have a functional gearswap for WHM? Trying to convert Bryth's SCH into one in the meantime.

  3. #1803
    Cerberus
    Join Date
    Jun 2007
    Posts
    411
    BG Level
    4
    FFXIV Character
    Ninita Nita
    FFXIV Server
    Excalibur
    FFXI Server
    Shiva
    WoW Realm
    Gnomeregan

    Quote Originally Posted by |Heretic| View Post
    Anyone have a functional gearswap for WHM? Trying to convert Bryth's SCH into one in the meantime.
    it's not the best since it's my mule's but here's mine

    Spoiler: show

    Code:
    function get_sets()
        send_command('@input /macro book 1;wait 1;input /macro set 10;input /echo Macros Changed to whm')
        send_command('@exec atima/whmaliases.txt')
        sets = {}
    
        sets.Idle     = {  
                            main="Earth Staff",sub="Reign Grip",ammo="Incantor Stone",
                            head="Nefer Khat",neck="Wiglen Gorget",lear="Loquac. Earring",rear="Star Earring",
                            body="Heka's Kalasiris",hands="Serpentes Cuffs",lring="Sheltered Ring",rring="Paguroidea Ring",
                            back="Cheviot Cape",waist="Tarutaru Sash",legs="Nares Trews", feet="Serpentes Sabots"
                        }
        
        sets.Movement = { feet="Herald's Gaiters" }
    
        sets.Cure     = {  
                            main="Tamaxchi",sub="Genbu's Shield",ammo="Aqua Sachet",
                            head="Orison Cap +2",neck="Colossus's Torque",lear="Orison Earring",rear="Star Earring",
                            body="Orison Bliaud +2",hands="Bokwus Gloves",lring="Ephedra Ring",rring="Sirona's Ring",
                            back="Orison Cape",waist="Cascade Belt",legs="Orsn. Pantaln. +2",feet="Rubeus Boots"
                        }
    
        sets.Stun     = {  
                            main="Tamaxchi",sub="Genbu's Shield",
                            head="Xux Hat",neck="Orison Locket",lear="Loquac. Earring",
                            hands="Bokwus Gloves",
                            back="Swith Cape",waist="Goading Belt",legs="Blessed Trousers",feet="Blessed Pumps"
                        }
    
        sets.Enhance  = {  
                            main="Kirin's Pole",sub="Fulcio Grip",
                            neck="Colossus's Torque",
                            hands="Augur's Gloves",
                            waist="Cascade Belt",legs="Cleric's Pantaln.",feet="Orsn. Duckbills +2"
                        }
    
        sets.Holy     = {  
                            main="Tamaxchi",sub="Genbu's Shield",ammo="Aqua Sachet",
                            head="Nefer Khat",neck="Stoicheion Medal",lear="Star Earring",rear="Star Earring",
                            body="Teal Saio",hands="Quauhpilli Gloves",lring="Strendu Ring",rring="Aqua Ring",
                            back="Searing Cape",waist="Searing Sash",legs="Teal Slops",feet="Orsn. Duckbills +2"
                        }
    
        sets.Repose   = {  
                            main="Tamaxchi",sub="Genbu's Shield",ammo="Aqua Sachet",
                            head="Xux Hat",neck="Stoicheion Medal",lear="Star Earring",rear="Star Earring",
                            body="Augur's Jaseran",hands="Quauhpilli Gloves",lring="Strendu Ring",rring="Aqua Ring",
                            back="Hecate's Cape",waist="Cascade Belt",legs="Teal Slops",feet="Orsn. Duckbills +2"
                        }
    
        sets.FastCast = {  ammo="Incantor Stone",neck="Orison Locket",lear="Loquac. Earring",back="Swith Cape" }
    
        sets.Curecast = {  
                            main="Tamaxchi",sub="Genbu's Shield",ammo="Incantor Stone",neck="Orison Locket",
                            lear="Loquac. Earring",body="Heka's Kalasiris",back="Pahtli Cape",legs="Orsn. Pantaln. +2"
                        }
    
        sets.Recast   = {
                            head="Xux Hat",neck="Orison Locket",lear="Loquac. Earring",hands="Blessed Mitts",
                            back="Swith Cape",waist="Goading Belt",legs="Blessed Trousers",feet="Blessed Pumps"
                        }
    
        sets.Cursna   = {  
                            head="Xux Hat",neck="Malison Medallion",lear="Loquac. Earring",
                            body="Orison Bliaud +2",hands="Augur's Gloves",lring="Ephedra Ring",rring="Ephedra Ring",
                            back="Swith Cape",waist="Goading Belt",legs="Cleric's Pantaln.",feet="Blessed Pumps"
                        }
                        
        sets.a_Idle   = sets.Idle
    end
    
    function precast(spell,action)
        if string.find(spell.english,"Cur") and not string.find(spell.english,"Cursna") then
            equip(sets.Curecast)
        elseif spell.english == "Stun" then
            equip(sets.Stun)
        elseif spell.english == "Cursna" then
            equip(sets.Cursna, {legs="Orsn. Pantaln. +2"})
        elseif action.type == 'Magic' then
            equip(sets.Fastcast)
        end
    end
    
    function midcast(spell,action)
        if string.find(spell.english,'Cur') and not string.find(spell.english,"Cursna") then
            local tempset = sets.Cure
            if string.find(spell.english, 'Curaga') then
                tempset.body = "Heka's Kalisiris"
            end
            equip(tempset)
        elseif spell.skill == 'EnhancingMagic' 
         and not string.find(spell.english, "Protect") 
         and not string.find(spell.english, "Shell") 
         and not spell.english == "Haste"
         and not spell.english == "Erase"
         and not spell.english == "Stoneskin" then
            local tempset = sets.Enhance
            if string.find(spell.english, "Bar") then
                tempset.head  = "Orison Cap +2"
                tempset.body  = "Orison Bliaud +2"
                tempset.hands = "Orison Mitts +2" 
            elseif spell == "Regen" then
                tempset.body  = "Cleric's Briault"
                tempset.hands = "Orison Mitts +2"
            end
            equip(tempset)
        elseif string.find(spell.english, "Holy") or string.find(spell.english, "Banish") then 
            equip(sets.Holy)
        elseif spell.english == "Repose" then equip(sets.Repose)
        elseif spell.english == "Haste" or spell.english == "Erase" 
         or spell.english == "Sacrifice" or spell.english == "Esuna" then
            equip(sets.Recast)
        elseif spell.english == "Stoneskin" then
            equip(sets.Recast, {waist="Siegel Sash"})
        end
        if spell.english == 'sneak' and spell.target.name == "Atima" then
            send_command('@wait 1.8;cancel 71')
        end
    end
    
    function aftercast(spell,action)
        equip(sets.a_Idle, sets.Movement)
    end
    
    function status_change(new,old)
    	if T{'Idle','Resting'}:contains(new) then
    		equip(sets.a_Idle, sets.Movement)
        end
    end
    
    function buff_change(status,g_l)
    end
    
    function self_command(command)
    end

  4. #1804
    Relic Shield
    Join Date
    Jan 2013
    Posts
    1,868
    BG Level
    6

    Lets pretend one is using the Dev build, and let us also pretend one found a bug, such as when in East Adoulin usin FFXIDB the mini map shows one as being well outside to the left of the map. Where would one report such a bug? all i can find is the regular windower bug report area.

    Or are we not really reporting bugs for dev builds?

  5. #1805
    Sea Torques
    Join Date
    Sep 2012
    Posts
    736
    BG Level
    5
    FFXI Server
    Leviathan

    Quote Originally Posted by Trumpy View Post
    Lets pretend one is using the Dev build, and let us also pretend one found a bug, such as when in East Adoulin usin FFXIDB the mini map shows one as being well outside to the left of the map. Where would one report such a bug? all i can find is the regular windower bug report area.

    Or are we not really reporting bugs for dev builds?
    Bug reports for the dev build are very welcome, more so than the regular build, since the leap is quite big and many of the 4.0 bugs have already been fixed or do not apply to 4.1 anymore.

    File an issue on our bug tracker for that or load up the FFOChat plugin and tell it to Zohno, although I believe he might be aware of it already. The fastest way to report bugs is still the FFOChat plugin or an IRC client in general.

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

    I noticed as playign as various monsters. I had /ma "(Fire)" <t> thats fire in auto translate and it would try to cast raise. but if i changed it to just typing Fire in there it works. There was a couple different spells that would error like this sayin the wrong spells. at the time i didnt realize i had shortcuts on (I think spellcast was unloaded as i been unloading spellcast autoexec and blinkmenot when playin as monster. bmn actually unloads it self really.) Shortcuts is the only thing i could think of that might effect this.

    also a couple times i simply typed like "paralyze" and it would try to cast it tho i didnt type // in front of it. is that shortcuts workin? I wasnt tryin to use paralyze but it seemed to try.

  7. #1807
    Sea Torques
    Join Date
    Sep 2012
    Posts
    736
    BG Level
    5
    FFXI Server
    Leviathan

    Quote Originally Posted by Trumpy View Post
    I noticed as playign as various monsters. I had /ma "(Fire)" <t> thats fire in auto translate and it would try to cast raise. but if i changed it to just typing Fire in there it works. There was a couple different spells that would error like this sayin the wrong spells. at the time i didnt realize i had shortcuts on (I think spellcast was unloaded as i been unloading spellcast autoexec and blinkmenot when playin as monster. bmn actually unloads it self really.) Shortcuts is the only thing i could think of that might effect this.
    This was a known bug with auto-translate in Shortcuts, although I believe it was fixed. But not sure if the change has been pushed yet.

    Quote Originally Posted by Trumpy View Post
    also a couple times i simply typed like "paralyze" and it would try to cast it tho i didnt type // in front of it. is that shortcuts workin? I wasnt tryin to use paralyze but it seemed to try.
    That is also a known Shortcuts bug. Byrth is already aware of it.

  8. #1808
    BG Content
    Join Date
    Jul 2007
    Posts
    22,367
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    Quote Originally Posted by Trumpy View Post
    I noticed as playign as various monsters. I had /ma "(Fire)" <t> thats fire in auto translate and it would try to cast raise. but if i changed it to just typing Fire in there it works. There was a couple different spells that would error like this sayin the wrong spells. at the time i didnt realize i had shortcuts on (I think spellcast was unloaded as i been unloading spellcast autoexec and blinkmenot when playin as monster. bmn actually unloads it self really.) Shortcuts is the only thing i could think of that might effect this.

    also a couple times i simply typed like "paralyze" and it would try to cast it tho i didnt type // in front of it. is that shortcuts workin? I wasnt tryin to use paralyze but it seemed to try.
    Both of these things have been fixed now.

    GearSwap was also updated to work with monstrosity. It will now try to load a <name>_MON.lua file if you're a monster. Why would anyone need this when monsters can't equip gear, you might ask? ... I was tired of canceling Regen before using Wild Ginseng. That's the entire reason.

  9. #1809
    Pandemonium
    Join Date
    Feb 2010
    Posts
    7,653
    BG Level
    8
    FFXI Server
    Sylph

    Byrth, first world problems extraordinaire.

  10. #1810
    New Merits
    Join Date
    Jul 2009
    Posts
    231
    BG Level
    4
    FFXI Server
    Valefor

    Quote Originally Posted by grevenilvec75 View Post
    Just lost a tojil run because all of my plugins unloaded and I crashed. The fuck is this shit.
    I've had this shit happen twice today. Also I keep randomly crashing upon zoning. Any ideas?

  11. #1811
    Sea Torques
    Join Date
    Sep 2012
    Posts
    736
    BG Level
    5
    FFXI Server
    Leviathan

    Quote Originally Posted by fatty View Post
    I've had this shit happen twice today. Also I keep randomly crashing upon zoning. Any ideas?
    Make a crash dump, otherwise no.

  12. #1812
    New Merits
    Join Date
    Jul 2009
    Posts
    231
    BG Level
    4
    FFXI Server
    Valefor

    Quote Originally Posted by Arcon View Post
    Make a crash dump, otherwise no.
    Since I'm technologically retarded, what is a crash dump?

  13. #1813
    BG Content
    Join Date
    Jul 2007
    Posts
    22,367
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    Ah! It's actually not that hard once you get the hang of it: https://github.com/Windower/Issues/w...ps-with-Windbg

  14. #1814
    Fake Numbers
    Join Date
    May 2013
    Posts
    82
    BG Level
    2
    FFXI Server
    Asura

    We had a guy on Tojil and Muyingwa yesterday having the same problems, crashed like 6 times a run.

  15. #1815
    Melee Summoner
    Join Date
    Apr 2010
    Posts
    37
    BG Level
    1
    FFXI Server
    Odin

    -------

  16. #1816
    Sea Torques
    Join Date
    Jul 2010
    Posts
    516
    BG Level
    5
    FFXI Server
    Bahamut

    Where can I find a list of variables and commands used by spellcast? Currently the only resources seem to be a very outdated guide and a number of forum posts on ffxiah.

  17. #1817
    Melee Summoner
    Join Date
    Jan 2010
    Posts
    35
    BG Level
    1

    Shortcuts:

    Auto-translated /magic or /jobability etc in conjunction with <st*> type target and spell/ja name not in quotes seem to be glitched, precast stuff gets equipped right away and you get a "cannot perform that action on the selected sub-target" error before you confirm target, spell/ja itself isnt firing off though. Auto-translated /magic Poisona <stal> triggers that behaviour, but not a-t'ed /magic "Poisona" <stal> or not a-t'ed lines.
    Not using a-t'ed prefixes works just fine, just a bit of a problem with having to edit years old macros.

    When target is not specified and you target some random guy target defaults to yourself, havent checked default target on party/alliance members though. Is that normal behaviour?

  18. #1818
    BG Content
    Join Date
    Jul 2007
    Posts
    22,367
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    Quote Originally Posted by Elpy View Post
    Shortcuts:

    Auto-translated /magic or /jobability etc in conjunction with <st*> type target and spell/ja name not in quotes seem to be glitched, precast stuff gets equipped right away and you get a "cannot perform that action on the selected sub-target" error before you confirm target, spell/ja itself isnt firing off though. Auto-translated /magic Poisona <stal> triggers that behaviour, but not a-t'ed /magic "Poisona" <stal> or not a-t'ed lines.
    Not using a-t'ed prefixes works just fine, just a bit of a problem with having to edit years old macros.
    Blerg. I'll take a look tonight.

    When target is not specified and you target some random guy target defaults to yourself, havent checked default target on party/alliance members though. Is that normal behaviour?
    It should be checking whether or not the target you currently have is valid and then using <me> as an absolute last resort. I can't see anything wrong in the function's logic and it's pretty simple. Which ability were you using?

  19. #1819
    Melee Summoner
    Join Date
    Jan 2010
    Posts
    35
    BG Level
    1

    Just checked, target defaults to yourself in party/alliance case as well. Tried with Haste, -na's, Arise etc, Devotion and Martyr worked fine.

  20. #1820
    New Merits
    Join Date
    Jul 2007
    Posts
    206
    BG Level
    4
    FFXI Server
    Odin

    This may have been asked before, so, I apologize if it has. I tried using search, but it came up with no results.

    Now that storage can be accessed from anywhere, is it possible for gear collector to use storage as well to grab/store items from/to?

Page 91 of 307 FirstFirst ... 41 81 89 90 91 92 93 101 141 ... LastLast

Similar Threads

  1. Service and Support
    By Ribeye in forum FFXI: Everything
    Replies: 8
    Last Post: 2009-10-17, 18:23
  2. Windows vista and FFXI problem
    By Takeno in forum FFXI: Everything
    Replies: 1
    Last Post: 2007-07-26, 13:36
  3. Windows Vista and Windower
    By divisortheory in forum FFXI: Everything
    Replies: 35
    Last Post: 2006-06-23, 04:19