Search results

  1. staphen

    PSOBB Addon Plugin (Lua UI addons)

    It was a lot more complicated than I remembered. The visible counters override the kills property with a function that sums up the total number of kills across all areas in an episode. This only really matters in episode 4, I think, where various enemies can be found in multiple areas, but for...
  2. staphen

    PSOBB Addon Plugin (Lua UI addons)

    This is the function you'd need to change. https://github.com/StephenCWills/psobb-kill-counter/blob/master/Kill%20Counter/init.lua#L489 Note that changes to this function will change the order of counters for the main kill counter window and session kill counter window, but also the detail...
  3. staphen

    Summer Scavenger Event 2020

    My two cents, 28 hours still isn't a fair reset interval. The daily shift of 4 hours means that resets on Saturday and Sunday are only offset by 4 hours relative to each other. Also, there is no weekly shift, so the time zones whose daytime hours more closely coincide with the second half of the...
  4. staphen

    Summer Scavenger Event 2020

    Purplenum Caves
  5. staphen

    PSOBB Addon Plugin (Lua UI addons)

    I am also under the impression that addons do not have network access. It's a bit of a hack, but perhaps you could marshal data to/from an external app via the filesystem and do all your network activities in that app.
  6. staphen

    two players one pc works but need help.

    Also, you can try devreorder. https://github.com/briankendall/devreorder
  7. staphen

    PSOBB Addon Plugin (Lua UI addons)

    I have an addon that might help. The idea was to be able to configure the visibility of all my addon windows whether those addons support it or not. This addon overrides the backtick/tilde key to toggle its own visibility. The configuration window starts out hidden so you'll need to press that...
  8. staphen

    TTF S-rank reward not appearing in inventory (scapedoll)

    Last thing I read suggests multiclienting with PSO2 drop style simply limits you to drops on a single character. This helps prevent abuse of the drop system without imposing any less favorable restrictions that might limit players' options in terms of mag feeding or farming additional section...
  9. staphen

    Game Download link not working on new computer

    If you scroll down to the last post in that thread, I described a workaround. You should be able to download the game by deleting your browser's HSTS settings for pioneer2.net and then revisiting the homepage by typing ephinea.pioneer2.net into your address bar. Don't type pioneer2.net into...
  10. staphen

    Game Download link not working on new computer

    Are you able to access the wiki? Because the game file is served from an http link, it may be the same issue as described here. https://www.pioneer2.net/community/threads/pioneer2-net-ssl-cert-error.17450/
  11. staphen

    MAE Tickets Disappearing

    I thought we were talking about integer overflow, but that makes it sound more like some kind of overrun. I've never made a quest before so I will defer to your wisdom.
  12. staphen

    MAE Tickets Disappearing

    Gotta be careful with overflow bugs, though. The condition x > max won't work if x has already overflowed, so you can't set the max too high. Otherwise you need to change the overflow detection logic to something like if (max-t > x) x=x+t else x=max. Just for my curiosity: If it's a common...
  13. staphen

    Sudden PS4 Controller Issues

    It should be easy to check whether you have another device hooked up to your computer that acts as a controller input. Just type Win+R to open the Run prompt, enter joy.cpl, and press Enter. That should give you your list of controllers as well as the likely order in which they appear to the...
  14. staphen

    Sporadic lag spikes on Fodra.

    I saw this when playing with my friend. I didn't realize it was affecting others.
  15. staphen

    All characters gone (resolved)

    Did you accidentally change your character bank in the upper right corner of the launcher, labelled "SLOT"?
  16. staphen

    RESOLVED -- Current connectivity issue since 4/20/2020 @ 01:30 UTC

    Who knows? Could have been a record-keeping glitch, a typo, an oversight, or whatever. I'm glad it's been resolved.
  17. staphen

    RESOLVED -- Current connectivity issue since 4/20/2020 @ 01:30 UTC

    FYI, I believe that's an unrelated issue. See: https://www.pioneer2.net/community/threads/pioneer2-net-ssl-cert-error.17450/#post-145260
  18. staphen

    PS4 Controller and Keyboard 1-9 & 0

    Have you tried using antimicro?
  19. staphen

    PSOBB Addon Plugin (Lua UI addons)

    For that you'll need to edit ...\addons\solylib\items\items_list.lua. To hide individual item types, you can change "true" to "false" before the last curly brace.
  20. staphen

    PSOBB Addon Plugin (Lua UI addons)

    Maybe you have a different keyboard layout. The code to change it is in ...\addons\core_mainmenu\init.lua. It looks like this. key_pressed = function(key) if (key == 192) then window_open = not window_open end end You'll need to figure out the code for the key you want to use. My best...
Back
Top