Search results

  1. Soly

    PSOBB Addon Plugin (Lua UI addons)

    @Gori Please download the newest version https://github.com/Solybum/psobbaddonplugin/releases/latest Should fix the text reading issues
  2. Soly

    PSOBB Addon Plugin (Lua UI addons)

    @Gori I just tried and the inventory as well as the monsters are read ok. Since I don't know what items you have, can you tell me which quest/area made the monster reader crash? (That one will be easier to test).
  3. Soly

    PSOBB Addon Plugin (Lua UI addons)

    Given that the Item reader and Timer addons failed, it seems you don't have the latest version of the new DLL we updated in my repository, you can find it here https://github.com/Solybum/psobbaddonplugin/releases/latest I'll look into it
  4. Soly

    PSOBB Addon Plugin (Lua UI addons)

    @e_bolavirus I pretty much only use cheat engine to look into this stuff... actually disassembling and decompiling the game, I only do to make patches to it or look into stuff that is not just reading memory... The characters library already has a function to get the character class...
  5. Soly

    PSOBB Addon Plugin (Lua UI addons)

    Just to let you know, I am adding this rq Seems to be good You can use it something like local self = lib_characters.GetSelf() local foie = lib_characters.GetPlayerTechniqueLevel(self, lib_characters.Techniques.Foie)
  6. Soly

    PSOBB Addon Plugin (Lua UI addons)

    @NeonLuna sorry to tag you like a thousand times We have updated the auto stack balance stuff so it doesn't always crash popup calls You can either get the file I said in the previous post (addons\psointernal\init.lua) or get the latest release...
  7. Soly

    PSOBB Addon Plugin (Lua UI addons)

    @NeonLuna since this is most likely how this will be solved? You can go into addons\psointernal\init.lua and comment the lines 153: balance_all_stacks = override_stack_functions() 224: balance_all_stacks() I think this should work but mismatched Begin/Ends and all that stuff will crash addons.
  8. Soly

    PSOBB Addon Plugin (Lua UI addons)

    Thanks, fixed. Afaik I have been grabbing the release build to put on github... So it seems the issue with the popups are the auto balancing stacks For some reason the popups don't actually appear (either in 1.49 or 1.75 WIP) unless I put the imgui.End after the whole begin popup. After...
  9. Soly

    PSOBB Addon Plugin (Lua UI addons)

    If you have github, feel free to make a PR with the change If the other color was hard to read, then I don't see a reason to not change it.
  10. Soly

    PSOBB Addon Plugin (Lua UI addons)

    Well... it is as "easy" as you described it... grab the player data and get the tech levels from it... You can see how some player stats are read here https://github.com/Solybum/PSOBBMod-Addons/blob/master/solylib/characters.lua#L81 You'd have to add a new function (hopefully taking the tech id...
  11. Soly

    PSOBB Addon Plugin (Lua UI addons)

    Updated the DLL to fix an issue with memory reading, thanks @Ender https://github.com/Solybum/psobbaddonplugin/releases/latest
  12. Soly

    Skin and UI request

    Does this have to be in Ephinea specifically? Nvm, I just realized this is in the teth sub forum If not, you can try Ultima. I added camera controls and hiding the hud... I haven't added making the character invisible (that works regardless of which character you use) but you can just leave...
  13. Soly

    PSOBB Addon Plugin (Lua UI addons)

    If anyone is not using a custom DLL or is using mine (timer addon) Here is the latest version with these changes https://github.com/Solybum/psobbaddonplugin/releases/latest
  14. Soly

    PSOBB Addon Plugin (Lua UI addons)

    @CageyRabbit ended up finding some more bugs... but we did figure out the memory reading was the culprit. We also tested your idea of accessing memory from the process itself (memcpy_s specifically) and he reported that even without delaying the update the addons run fine and the game didn't lag.
  15. Soly

    PSOBB Addon Plugin (Lua UI addons)

    I guess the first good and weird are the same.. - The throttle not affecting anything: even if you set something like 10000 they change instantly? (that'd be 10 seconds) - Disabling timer crashes the addon: can you show me the log after it crashes? If you feel like it, before checking for the...
  16. Soly

    PSOBB Addon Plugin (Lua UI addons)

    You can just replace the dll file (and pdb if you have it and is also in the zip)... You can leave the addon folder alone for this one, I think
  17. Soly

    PSOBB Addon Plugin (Lua UI addons)

    I've added a throttle setting to the item reader https://github.com/Solybum/PSOBBMod-Addons This requires you to use this version of the DLL tho (unless you are already using it) https://github.com/Solybum/psobbaddonplugin/releases/tag/v0.3.4.1 If you open the item reader you can find a...
  18. Soly

    PSOBB Addon Plugin (Lua UI addons)

    At least the gameplay does demonstrate a serious slow down... I'll let you know when I get something going to reduce the update rate.
  19. Soly

    PSOBB Addon Plugin (Lua UI addons)

    If you could confirm that there is actually a memory leak, I mean, this should show in the task manager or whatever, after quite some time running. I'd suggest to let it run for a bit in an area (lobby for example, probably find one that is empty), so different textures don't affect the amount...
  20. Soly

    PSOBB Addon Plugin (Lua UI addons)

    Have you tried using only the "Mags" window? This might not help much as all items are parsed but they are not processed for display if you use the that specific window (instead of AIO). The only thing I can think of, is to add a way to reduce the times the addon retrieves the data (ie, could...
Back
Top