Item Search
     
BG-Wiki Search
Page 163 of 307 FirstFirst ... 113 153 161 162 163 164 165 173 213 ... LastLast
Results 3241 to 3260 of 6124
  1. #3241
    Relic Shield
    Join Date
    Jan 2013
    Posts
    1,868
    BG Level
    6

    Have you updated Yush since it was added? It didnt seem to do anything for me before so I decided I would wait for some kind of update before messing with it again.

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

    Idk, think so, but nothing major.

  3. #3243
    Relic Weapons
    Join Date
    Apr 2007
    Posts
    348
    BG Level
    4
    FFXI Server
    Ragnarok

    Is there a method to disable mesh LoD culling to remove models mysteriously changing shape? Distance doesn't seem to do it, unless there's a command I don't know about.

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

    It would theoretically be possible, but we currently don't expose a way to do it. We'll have to dig around in memory to find where it is. You can submit a feature request for that on our issue tracker, as I'm sure some people would be interested in it.

  5. #3245
    Relic Weapons
    Join Date
    Apr 2007
    Posts
    348
    BG Level
    4
    FFXI Server
    Ragnarok

    Put a request in on the tracker. I'll see if I can't do some armchair-tweaking with cheat engine to at least try to help.

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

    For those of you that don't know what just happened, Casey_ is asking for Arcon to adjust environmental objects so that they don't do that weird "boom! appeared!" thing. Like when you walk up to a tree and it's a skeleton until you're like 20' away, when it suddenly becomes a tree. Same deal with mountains, but longer range. I have to assume that SE set such strict and short-range limits on it for memory reasons, but with today's PCs there's no real reason to not just force them all to render at a much longer range (besides not being able to figure out how to do it).

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

    have always wanted that to be a feature of DD, never thought to ask though

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

    I am glad someone explained cause i was all WTF'd about what it meant lol

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

    Gearswap error while muling is back, this time is new though. Line 416 in Gearswap.lua

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

    Quote Originally Posted by Sechs View Post
    Gearswap error while muling is back, this time is new though. Line 416 in Gearswap.lua
    Should be fixed.

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

    I'm getting a strange thing, don't even know if it's windower related.
    You know when you use a command that generates an error (like "/c playername" with said player out of range) or you use a macro with a JA which is not ready yet, you get an error message?
    Or a yellow message that says such JA is not ready yet.

    Previously I could spam the macro with Pianissimo JA and I would get the error message only once or twice.
    Now I get an error message EACH TIME I press the button.

    It's the same for everything else.
    Is this... ok? I just noticed it but I swear it wasn't like this. I have no clue what's causing it.

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

    Quote Originally Posted by Subadai View Post
    Code:
    res = require('resources')
    slips = require('slips')
    
    
    local item_registry = {}
    local items = windower.ffxi.get_items()
    for _,v in pairs({'inventory', 'safe', 'storage', 'locker', 'satchel', 'sack', 'case'}) do
        for n,m in pairs(items[v]) do
            item_registry[m.id] = v
        end
    end
    
    for i,v in ipairs(slips.storages) do
        for n,m in ipairs(slips.items[v]) do
            if item_registry[m] then
                windower.add_to_chat(8,item_registry[m]..': '..tostring(res.items[m].name)..' ('..tostring(res.items[v].name..')'))
            end
        end
    end
    How does this work? I tried to create a blank Lua file with that code in and then //gs load filename.lua
    but I'm getting several Lua errors

    GearSwap/refresh.lua:145 (file failed to load)
    GearSwap/data/filename.lua:1 attempt to call global 'require' (a nil value)

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

    I just made a folder in windower4/addons called checkslips and saved the file there with the name checkslips.lua. Then lua l checkslips or lua r checkslips should work, although it complains about something, I forget the exact error. But it works. Also, might want to add 'wardrobe' to the list there, (not sure if that's the correct name, but worth a try) so it will search your wardrobe too. Edit: 'wardrobe' seems to work.

  14. #3254
    BG Content
    Join Date
    Jul 2007
    Posts
    22,361
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    Quote Originally Posted by Sechs View Post
    How does this work? I tried to create a blank Lua file with that code in and then //gs load filename.lua
    but I'm getting several Lua errors

    GearSwap/refresh.lua:145 (file failed to load)
    GearSwap/data/filename.lua:1 attempt to call global 'require' (a nil value)
    Yeah, you don't want to make it as a GearSwap file. Just load it as its own addon. Require doesn't exist in GearSwap files.

  15. #3255
    Salvage Bans
    Join Date
    Mar 2010
    Posts
    769
    BG Level
    5
    FFXI Server
    Leviathan

    Would it be possible to add a function to Treasury that places items in satchel/sack/case if your inventory is full/near full?

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

    Honestly, I wasn't planning on adding something like that, as it would require adding massive chunks of logic to the addon, unless I blindly move new items to anywhere with free space. Personally though, I'm not sure if this belongs in Treasury, if anything it could be part of a general inventory manager plugin, which Treasury is not designed to do.

  17. #3257
    Relic Shield
    Join Date
    Oct 2006
    Posts
    1,599
    BG Level
    6
    FFXI Server
    Odin

    Quote Originally Posted by Haborym View Post
    Would it be possible to add a function to Treasury that places items in satchel/sack/case if your inventory is full/near full?
    what items would you want to move? I have a basic drop items script that I use when farming capacity points that automatically drops junk so I have room for seals. This could easily be modified to move items if you know which you want to move.

  18. #3258
    Custom Title
    Join Date
    Nov 2008
    Posts
    1,065
    BG Level
    6
    FFXI Server
    Diabolos

    If Windower is going to get into deep memory tweaks for graphical stuff like LoD, can you guys also dig into the FPS hack and make it native to Windower? You might have to put some warning on that Shadows: High will destabilize your framerate and the wild swings make the animation speed variance more apparent than <30fps, but hey... Maybe you guys can also see if SE is so stupid as to have integer based frame timing and that's where our 29.4 FPS cap comes from (34ms/frame, instead of 33.33~). Fixing that would probably be more involved though, and just unlocking to 60 makes the dropped frame less impactful.

    Mostly, I'd just like to get closer to plugin-free by not needing Run to run the hack.

  19. #3259
    BG Content
    Join Date
    Jul 2007
    Posts
    22,361
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    IIRC, the FPS hack is incredibly simple. The problem with it is that FFXI animations can only run at integer multiples of their normal frame counts. So if you set your FFXI to 60Hz, it'll make twice as many frames per animation. If you have it set to 60Hz and you're lagging down to 30 Hz, all animations take twice as long as they would if you were set to 30Hz and running at 30Hz. Also, because it only accepts integer multipliers, we can't set it to something like 45 Hz (or scale the setting down with your most recent frame period) because 45 Hz (1.5x) defaults to 60 Hz (2x) for animations and you get the same animation lag whenever you interact with an NPC.

    The 60Hz thing isn't a problem for people/computer setups that can maintain the 60Hz, but I'm not sure how many people that is, considering that people still post asking how to restore their FFXI-gameboy settings at least once a week because Windower 4's minimum default is too demanding for their computers.

  20. #3260
    Salvage Bans
    Join Date
    Mar 2010
    Posts
    769
    BG Level
    5
    FFXI Server
    Leviathan

    Quote Originally Posted by Mafai View Post
    what items would you want to move? I have a basic drop items script that I use when farming capacity points that automatically drops junk so I have room for seals. This could easily be modified to move items if you know which you want to move.
    It would be cool if you could specify what you want moved, sort of like an LL profile. I'm not really worried about where they get sorted to, but rather that they get moved out of active inventory.

Page 163 of 307 FirstFirst ... 113 153 161 162 163 164 165 173 213 ... 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