Search results

  1. staphen

    PSOBB Addon Plugin (Lua UI addons)

    @Lileya, @Ayria The latest version of the Kill Counter now has a workaround that will lock the section ID so that it doesn't change throughout the session. In all my testing so far, the room ID gets sent to the client when the player joins the game so the section ID should match the room ID...
  2. staphen

    PSOBB Addon Plugin (Lua UI addons)

    I was actually originally using that memory address. I changed it to 00A962BC because it looked like it was going to fix the problem, but it seems as though both memory addresses switch to the party leader's section ID the moment that the player warps down to Ragol for the first time. I had a...
  3. staphen

    PSOBB Addon Plugin (Lua UI addons)

    Whoa, I missed a lot of discussion yesterday. I suspect there has to be a memory address that contains information about the room ID, so long as /partyinfo always returns the room ID. I'll try to look into this further, but it's kind of a difficult thing for me to test.
  4. staphen

    PSOBB Addon Plugin (Lua UI addons)

    After each of those lines I linked, you have to add a line like this one: https://github.com/Solybum/PSOBBMod-Addons/blob/master/Item%20Reader/init.lua#L650 But instead of options.fontScale, you can enter a number directly: imgui.SetWindowFontScale(1.5)
  5. staphen

    PSOBB Addon Plugin (Lua UI addons)

    Not without a code change. If you want to go after it, here are the relevant calls to imgui.Begin(). Addons window: https://github.com/HybridEidolon/psobbaddonplugin/blob/master/addons/core_addonlist/init.lua#L32 Log window...
  6. staphen

    PSOBB Addon Plugin (Lua UI addons)

    @StevieWonderDownUnder, there should be a button labeled "Log" on the plugin's main window. If you click on that, it should pop up a window with error messages for the addons that failed. Can you take a screenshot of that log window and post it? EDIT: Perhaps I should also mention, I have a...
  7. staphen

    PSOBB Addon Plugin (Lua UI addons)

    You should be able to make things work either way; the most important thing is to be consistent. As an example, Blender's Z-axis goes up and down, though I tend to think of the X-axis as being north/south in Blender. Apparently, this convention is used by CAD systems for real-world applications...
  8. staphen

    PSOBB Addon Plugin (Lua UI addons)

    Use the memory address for the player index: https://github.com/Solybum/PSOBBMod-Addons/blob/master/solylib/items/items.lua#L36 Read the index from memory: https://github.com/Solybum/PSOBBMod-Addons/blob/master/solylib/items/items.lua#L441 Use it to calculate the offset when reading from the...
  9. staphen

    PSOBB Addon Plugin (Lua UI addons)

    Yeah, I wrote the addon for my own personal use so I wasn't really planning on making it customizable. I don't mind turning it into a full-fledged project if there's demand for it.
  10. staphen

    PSOBB Addon Plugin (Lua UI addons)

    I just released a new version of the Kill Counter addon today. The latest version adds some additional configuration options for locking the Global Kill Counter and Session Kill Counter displays into a user-configurable set of dimensions. If you lock them, then they won't change even if you...
  11. staphen

    PSOBB Addon Plugin (Lua UI addons)

    You basically just need to get the game's resolution in lua, right? Soly's anchoring code is getting that. https://github.com/Solybum/PSOBBMod-Addons/blob/master/solylib/helpers.lua#L8
  12. staphen

    PSOBB Addon Plugin (Lua UI addons)

    It does appear as though 0x2E works better than 0x28 in Forest, but it doesn't seem to work at all in Caves, Mines, or Ruins. That is to say, the value of 0x2E is always 0 unless you're in Forest as far as I can tell. The same phenomenon occurs in episode 2 where 0x2E is best for CCA, but is...
  13. staphen

    PSOBB Addon Plugin (Lua UI addons)

    This is currently the most detailed and up-to-date guide for how to install Eidolon's plugin as well as Soly's addons. https://www.pioneer2.net/community/threads/peppercats-guide-on-how-to-install-the-psobb-character-reader-addon-for-silly-bees.5597/ If you want any of the other addons, you'll...
  14. staphen

    PSOBB Addon Plugin (Lua UI addons)

    I believe Soly has retired the Character Reader, Floor Items, and Mags addons and replaced them with the Item Reader which manages all three of the windows provided by those addons through in-game configuration. This means you should only copy the Item Reader folder to your addons directory, and...
  15. staphen

    PSOBB Addon Plugin (Lua UI addons)

    Alright, I think I've resolved all the issues we talked about here. I had a hard time breaking this version (that is to say, I couldn't get the game to crash anymore). Let me know if you find anything else...
  16. staphen

    PSOBB Addon Plugin (Lua UI addons)

    Hmm. Without seeing your code, it would be hard to guess what's going on. It's essentially supposed to be an auto-balancing stack so you can be more sloppy, but it will definitely get confused if you don't match your Begins with the appropriate Ends and your Pushes with the appropriate Pops. In...
  17. staphen

    PSOBB Addon Plugin (Lua UI addons)

    I submitted a PR for the push/pop mismatch error that occurs when an addon encounters an exception. TBH, it may have been enough to simply set the NDEBUG preprocessor variable and release a new version of the dinput8.dll assembly, but I don't really want to make a habit of maintaining separate...
  18. staphen

    PSOBB Addon Plugin (Lua UI addons)

    According to this, you may be missing some Windows Updates: https://www.smartftp.com/support/kb/the-program-cant-start-because-api-ms-win-crt-runtime-l1-1-0dll-is-missing-f2702.html I guess you may need to go ahead and update your computer, then reinstall the VC++ 2015 runtime. Alternatively...
  19. staphen

    PSOBB Addon Plugin (Lua UI addons)

    Oh, is Eidolon working on it? I have an idea on how to deal with it so thought I might take a stab at it.
  20. staphen

    Aggrebee's Guide on How To Install The PSOBB Character Reader Addon For Silly Bees

    It's a bit of a long shot since I've never received that error, but a little research seems to suggest that you may have installed the wrong Visual C++ Redistributable. This is a 32-bit game so you'll need the x86 version, not the 64-bit version.
Back
Top