Item Search
     
BG-Wiki Search
Page 180 of 307 FirstFirst ... 130 170 178 179 180 181 182 190 230 ... LastLast
Results 3581 to 3600 of 6124
  1. #3581
    Relic Shield
    Join Date
    Oct 2006
    Posts
    1,599
    BG Level
    6
    FFXI Server
    Odin

    Quote Originally Posted by Trumpy View Post
    I thot it was cause arrow keys can still mess it up when u push up and down or left/right same thing with when you mouse over your item list it sometimes moves the pointer.
    It was the case when it used arrows / enter keypresses to move items. Now it moves items the same way itemizer does (which doesnt require menu open).

  2. #3582
    CoP Dynamis
    Join Date
    Mar 2013
    Posts
    275
    BG Level
    4
    FFXI Server
    Odin

    Thanks for adding recast to the new spells! But it doesn't seem to be picking up the duration, specifically haste2/flurry/flurry2, I reopened windower for updates (and got some) and reloaded timers several times, but it looks like it was not added. any eta on this?

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

    Durations aren't stored in the .dats. Can you cast them and tell us what they are?

  4. #3584
    Impossiblu
    Join Date
    Mar 2010
    Posts
    10,445
    BG Level
    9
    FFXIV Character
    Prothescar Centursa
    FFXIV Server
    Balmung
    FFXI Server
    Valefor

    Base durations:

    Erratic Flutter = 5m
    Haste II = 3m

    don't know flurry


    also was there anything about stuff like diffusion being added for duration?

  5. #3585
    Cerberus
    Join Date
    Jun 2010
    Posts
    461
    BG Level
    4

    Wondering if cairface is still maintaining DressUp? Posted issue with blinking after july update but no response.
    If anyone is interested, even if you set custom armor it still blinks every time gear is changed, the huge appeal
    of custom armor is no blinking without needing to set BMN to always which at time still blinks.
    Any info will help.

  6. #3586
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    Flurry is 3 mins.
    I assume Flurry II is the same.
    Did you guys added Crusade and the 2 Ninja spells with correct durations?
    I forgot to re-check the resources after I submitted their data on Github.


    Granted that I possibly submitted too much stuff concerning Timers on Github lately but... what can I say, Timers really is a vital plugin to me.

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

    I just wanted to say that I was completely swamped the last few days, so I didn't get much work done, although the new Timers is almost finished (most parts already work). It will be a lot more flexible than the previous version, which is why it'll allow us to represent formulas more accurate. The previous version did not allow that at all, which is why I couldn't implement some suggestions made on GitHub yet.

    That said, this is almost a complete recode of the plugin. Some things will likely be screwed up, so after I finish it tonight I'll leave it on the dev version of Windower. I'd very much appreciate it if you could test out a few things and report errors on it.

    Like I said, not yet, but in a few hours. You can check here when I publish it.

    And after that is done, keep submitting missing/incorrect durations on GitHub. I don't play, so I do not notice these things by myself, so from that point on it will rely on your contributions.

  8. #3588
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    I still don't see it published Arcon.

    Different topic now.
    Is there a way to make a script or an addon that will automatically talk to Ornery Dhole and get the stones I want with my Obsidian Fragments? Having to trade NQ stones one by one is a process that's slowly killing me...

  9. #3589
    BG Content
    Join Date
    Jul 2007
    Posts
    22,359
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    It is possible but afaik it has not been done.

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

    Quote Originally Posted by Sechs View Post
    I still don't see it published Arcon.
    It is now.

  11. #3591
    Relic Shield
    Join Date
    Sep 2007
    Posts
    1,738
    BG Level
    6
    FFXI Server
    Sylph

    Idk if this is a windower issue, but typing /sit crashes POL. Crashed 2 people in my party so far.

  12. #3592
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    Quote Originally Posted by Byrthnoth View Post
    It is possible but afaik it has not been done.
    Someone please do it!
    I'm going to kill myself before I manage to exchange 80k Obsidian Fragments into NQ stones...

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

    Quote Originally Posted by Sechs View Post
    Someone please do it!
    I'm going to kill myself before I manage to exchange 80k Obsidian Fragments into NQ stones...
    why exchange all at ones? if you splitt them ghastly, verdigis and wailing stones up, its np! (albeit still monotous as fuck)

  14. #3594
    Hydra
    Join Date
    Nov 2009
    Posts
    133
    BG Level
    3
    FFXI Server
    Ragnarok

    Took a long break from FFXI and came back to game last month. I have found some problems while using OhShi addon:
    (1) the exclamation mark image (for dangerous TP move) is not flashing, it just pop and remains on the screen.
    (2) the text box for displaying the mob's TP move is not shown on the screen.

    I partially solved problem 1 by using windower.prim.create to overlap the original image with a transparent image, and problem 2 by using windower.text.create to create another text box.

    After inspecting the ohshi.lua, I suspect the problems might not be from OhShi, but from windower.prim.delete and texts.lua. I put these codes into Ohshi but the exclamation mark image still stays on the screen:

    Code:
       
        function flashImage()
        local name = 'ohShi'..tostring(math.random(10000000,99999999))
        windower.prim.create(name)
        windower.prim.set_color(name,255,255,255,255)
        windower.prim.set_fit_to_texture(name,false)
        windower.prim.set_texture(name,windower.addon_path..'data/warning.png')
        windower.prim.set_repeat(name,1,1)
        windower.prim.set_visibility(name,true)
        windower.prim.set_position(name,settings.pos.x-30,settings.pos.y-10)
        windower.prim.set_size(name,30,30)
        coroutine.sleep(3)
        windower.prim.delete(name)
        end
    As for the texts.lua: I downloaded the distance.lua addon and it doesn't show anything on screen (the distance plugin is working well). I playing FFXI on windows 8.1

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

    The Distance addon only displays something if you have a valid target, unlike the plugin. Were you maybe not targeting anything?

  16. #3596
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    Quote Originally Posted by Arcon View Post
    It is now.
    I know this sounds annoying, but I still cannot find where to download Timers 2.0.0.1 from, so that I can test it and provide feedback.
    I only find it mentioned in the changelog.md but I cannot find the beta plugin itself.

  17. #3597
    CoP Dynamis
    Join Date
    Mar 2013
    Posts
    275
    BG Level
    4
    FFXI Server
    Odin

    Quote Originally Posted by Sechs View Post
    I know this sounds annoying, but I still cannot find where to download Timers 2.0.0.1 from, so that I can test it and provide feedback.
    I only find it mentioned in the changelog.md but I cannot find the beta plugin itself.
    Do you even github!?

    https://github.com/Windower/Lua/tree/4.1-dev/addons

    lol it's under the same repository but in a different folder =P

    EDIT: maybe I don't see it... >.>

  18. #3598
    E. Body
    Join Date
    Nov 2008
    Posts
    2,048
    BG Level
    7
    FFXI Server
    Bismarck

    Can I save/keep all my windower folders in my drop box folder, thus allowing me to update my gearswap files from any PC, keeping them all updated no matter what PC i am on?

  19. #3599
    New Spam Forum
    Join Date
    Nov 2009
    Posts
    190
    BG Level
    3
    FFXI Server
    Sylph

    Quote Originally Posted by Sechs View Post
    I know this sounds annoying, but I still cannot find where to download Timers 2.0.0.1 from, so that I can test it and provide feedback.
    I only find it mentioned in the changelog.md but I cannot find the beta plugin itself.
    Download the Dev version of Windower from the main site, it will automatically download v2.0.0.1 plugin for you.

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

    Quote Originally Posted by Snprphnx View Post
    Can I save/keep all my windower folders in my drop box folder, thus allowing me to update my gearswap files from any PC, keeping them all updated no matter what PC i am on?
    Yes.

    Quote Originally Posted by Subadai View Post
    Download the Dev version of Windower from the main site, it will automatically download v2.0.0.1 plugin for you.
    Either that, or http://update.windower.net/dev/plugins/Timers.dll.

Page 180 of 307 FirstFirst ... 130 170 178 179 180 181 182 190 230 ... 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