Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Not sure why you are having issues with the Timer addon, maybe go into the addon folder and delete options.lua
Also this is a countdown and stopwatch...
The mag timers are in the Item Reader
I've been using this plugins now for a few days and while i love them sometimes they get in the way when navigating menus etc
Is there a way to set plugs to only work when in the lobby or when not in the menu?
If not no big deal, just figured it would be cool to do |
The player reader itself has an option to disappear when in menu but no other addon has that feature as of yet. Best thing to do to avoid it is to place addons in spots where the menu doesn't show as their is a few spots, just gotta tweak it best you can for your preferences. Hopefully this feature is added to all addons in the future but that's down to each individual addon maker.
Why don't you make a PR for those addons?I've modified and added the functions of hiding addons when the menu is open like with the player reader to some other addons for personal use but I dunno about releasing something like that considering I didn't make them.
Are you using Tofuman's launcher, presumably for your own server? If for some reason you are using that launcher on ephinea, just stop and use the online.exe instead.Hi, I'm having an issue with the addons. I've installed them all as per the guide, but when I try to start the game through Launcher.exe, I get a 'Failed to load init.lua' error.
I can launch the game with the PsoBB or online.exe, but they're stuck in the default 640x480 window. It doesn't seem to recognise the options I chose in the launcher.
Screenshot (97)
Lua error when I try to launch the game in Launcher.exe
I've modified and added the functions of hiding addons when the menu is open like with the player reader to some other addons for personal use but I dunno about releasing something like that considering I didn't make them.
This addon also has more specific options for hiding like only in lobbies or "upper" and "lower" menus are open. https://github.com/izumidaye/psobb-custom-HUD But like mentioned before from me I am absolutely no programmer and my attempts of porting this method over result in addons not loading. :^)
https://www.pioneer2.net/community/threads/psobb-addon-plugin-lua-ui-addons.4543/page-42#post-123459I have poor eyesight, how do I make the font larger?
Did you grab the updated dinput8.dll from soly's fork of the psobbaddonplugin that I linked in that post?Thank you but I think I'm doing something wrong. When I open the theme editor the font scale is 1.000, but when I change it to 3.000 nothing changes.
Could you tell me how to do it please? Sorry, I'm new to this stuff...
If you're using that launcher for your own server, there's an issue where it sets the working directory to something bizarre. You need to build your own DLL that sets the working directory through SetCurrentDirectory() or w/e the Win32 API call is called.
Clone/download the repository, open it in visual studio, and inside dinput8.cpp, add SetCurrentDirectory("PATHTOYOURPSOBBHERE") somewhere in Initialize() or DllMain(). Probably a better idea to put it in Initialize() near the end. So if your home server's psobb.exe is at C:\MyTeth\psobb, you would addHi, do you have more information on how to do that? I'm running a home server and get the same "Failed to load init.lua" error. Thank you!
SetCurrentDirectory("C:\\MyTeth\\psobb");
char *pdir = getenv("PSO_HOME");
if (pdir)
SetCurrentDirectory(pdir);
setx PSO_HOME "%cd%"
echo %PSO_HOME%
launcher.exe
Code:setx PSO_HOME "%cd%" echo %PSO_HOME% launcher.exe
So when I run this bat script, it will set an environment variable named PSO_HOME with the current directory, and it will then run the launcher.exe. The plugin will grab the PSO_HOME variable value (the current directory) and set that as its current directory.