Jump to content

karu

Web Development Lead [WDL]
  • Posts

    1117
  • Joined

  • Donations

    0.00 USD 

Everything posted by karu

  1. You need to create new account in support page as it uses its own users list. Request new password in portal for that ingame account.
  2. Yes. Should be same in both now. Should be fixed. Thanks,
  3. You need to be more specific with the error. Post screenshots of launcher and errors.
  4. How so? If you use sector size or calculate own bbox around visible navs the math is same. Translate absolute ingame coords to relative coords (0..1 inside bbox), then relative coords to pixel coords on screen.
  5. Yeah it was truncated, fixed now. Thanks,
  6. @Codemonkeyx Thanks, I missed that ammo stats (dps) uses wrong mod aswell in item page (another hardcoded value) Reload mod for projectile (0.63) and missile (0.65) are different.
  7. @Codemonkeyx @Doctor Search list was using hardcoded 0.63 for reload. I changed to to 0.65 for missiles. Only ammo using weapons were affected. Item page is using 'ship simulation' to calculate the stats and that fetches stats/mods from db. Thanks,
  8. I think portal issue is fixed. I cannot help with ingame issue. If you changed forum name, then you also need to relink ingame accounts on portal.
  9. Thanks, seems that session had some invalid data for some reason and portal did not fail gracefully. I'll try to improve that.
  10. @Huron, @Codemonkeyx net7proxy overwrites enb mutex name with value from GetTickCount() before client.exe process is resumed (its launched/created in suspended mode). So ~16ms delay between launching multiple proxy instances should fix client mutex issues.
  11. I changed tooltips to 500ms delay. That was misclick and I deleted my message.
  12. Seems that sending email from portal is not working. I'm checking it.
  13. For ingame issues you should open a ticket in https://support.net-7.org/
  14. Might be firewall issue. Unfortunately I do not know how to debug it. Firewall in here can be Windows builtin firewall, or other firewall software, or router even.
  15. Change ingame account passwords on net-7.org portal to see if that fixes the issue.
  16. You need to use LaunchNet7 to run the game, and in there client path must be for 'release\client.exe' and not 'enb.exe' which I believe you are using
  17. Thanks, I added max length check to ingame password field. It already had special characters check.
  18. https://support.net-7.org/ not working for you?
  19. Those files should be in Net-7\bin directory under program files (i think). Check if your antivirus program claims them (or some other file from there) as threat. You could try to reset updates in launcher which would rescan and download missing files.
  20. Errors go to stderr, not basic output from programs. Hopefully current version works. Good job.
  21. e&b/net7 config will run short benchmark (vidtest) which switches to selected mode to find out polygons/sec metrics, and the default happened to be fullscreen. -- I used clean test container for testing and there some issues. Because wine is not in PATH, winetricks can't find it. Adding "export PATH=$(dirname $WINE_EXEC):$PATH" after "WINE_EXEC=$(install_wine)" will fix it. Worst case, it adds /usr/bin there twice. There's also missing cabextract as it might of been installed by winetricks. Winetricks does suggest installing cabextract when it fails to install fonts (i think). You also cant do "WINE_EXEC=$(install_wine)" because if wine-staging is not installed, then WINE_EXEC will contain all the text displayed at install time. You could do something like this WINE_EXEC=$(find_wine) if [ -z "$WINE_EXEC" ]; then install_wine ; WINE_EXEC=$(find_wine) ; ... if still not found, error out; fi apt install command should probably be "sudo DEBIAN_FRONTEND=noninteractive apt --assume-yes install --install-recommends " as I was getting hidden dialog options that required me to press enter blindly.
×
×
  • Create New...