Jump to content

Dahlgren

Member
  • Content Count

    69
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by Dahlgren

  1. https://imgur.com/a/Xod6U We've been using this for almost three years now at our community and have helped a lot to allow our mission makers to host their own events. Features Create multiple instances of game servers in the same admin panel See server status queryed from the instances with current mission and players Download game logs Upload missions from your local computer and from Steam Workshop to the server Requirements Node.js Pre-installed Arma Server Supported Platforms Windows Linux Linux with Windows server binary using Wine Supported Games Arma 3 Arma 2 Operation Arrowhead Arma 2 Arma 1 Cold War Assault (not supported on Linux without Wine) Operation Flashpoint Resistance Operation Flashpoint Download Git repository with install instructions, https://github.com/Dahlgren/arma-server-web-admin
  2. Dahlgren

    Arma Server Web Admin

    Mod folders must have a valid "addons" folder or they won't show up. Same as required by game to load the PBOs. 3CB Factions works fine on our servers. Make sure your download and folder is correct.
  3. Dahlgren

    Arma Server Web Admin

    I think this would work, auth: [ { username: "user1", password: "password1" }, { username: "user2", password: "password2" } ]
  4. Remove P\ from your prefix
  5. Dahlgren

    Arma Server Web Admin

    Last update to the GitHub repository was made in March so I'm gonna say yes?
  6. The emftopng binary can be found via http://killzonekid.com/arma-scripting-tutorials-how-to-export-topography/ Or link to the Google Drive folder directly, https://drive.google.com/folderview?id=0B29LgF9v_YpQd1pjcjRsbXhTRHc&usp=sharing
  7. Assigning the arma server to a specific IP on a server with multiple interfaces can be done using -ip=123.123.123.123, https://community.bistudio.com/wiki/Arma_3_Startup_Parameters#Server_Options
  8. Dahlgren

    Arma Server Web Admin

    The web admin allows managing multiple servers with only one server folder
  9. Dahlgren

    Arma Server Web Admin

    You have installed a newer incompatible version of webpack. You can check this with npm ls webpack which should say webpack@1.15.0 as of this post date. The application requires the versions as specified in the package.json file which are to be installed with npm install. Restore the correct package.json by redownloading the file and do npm install again.
  10. Dahlgren

    Arma Server Web Admin

    The manager generates a server.cfg based on options selected in the UI such as title etc. There's a box to input additional settings which are not configurable in the UI. Those will be appended to the server.cfg file. The generated server.cfg is automatically added as argument to the server.
  11. FFP team made a breaking change in how Rk rifles were defined. It's been resolved now.
  12. I've updated my compat mods to the new config format Anrop Unsung JSRS FFP: JSRS Sounds SFP: JSRS Sounds
  13. Should be possible yes. You can even avoid the JSRS_Soundmod_Configuration dependency by declaring some default Arma 3 cfgPatches like a3_data_f or a3_sounds_f as addonRootClass for it.
  14. https://steamcommunity.com/sharedfiles/filedetails/?id=1817844401 class CfgPatches { class JSRS_Soundmod_Configuration { requiredVersion = 1.60; requiredAddons[] = {}; units[] = {}; weapons[] = {}; }; class JSRS_Soundmod_Cfg_Weapons { // Use meta information from specified addon. Used to avoid repeated declarations. addonRootClass = "JSRS_Soundmod_Configuration"; requiredVersion = 1.60; requiredAddons[] = {"JSRS_Soundmod_Configuration"}; // Probably not needed :P units[] = {}; weapons[] = {}; }; }; https://community.bistudio.com/wiki/CfgPatches#Sub-folders
  15. Fantastic, really looking forward to this change! Making a mental note to update my JSRS compat stuff for SFP and Unsung once this is released.
  16. Dahlgren

    Discord Rich Presence

    Apparently BattlEye did whitelist this extension sometime between Spring and now
  17. Enables Rich Presence in Discord, https://discordapp.com/rich-presence Supports BattlEye Steam Workshop: https://steamcommunity.com/sharedfiles/filedetails/?id=1326839989 No reported issues since March so I should probably make a more public release of it Shows current mission, world and elapsed time Current Supported Worlds: Abramia (IceBreakr) Altis (Arma 3) Beketov Chernarus (Arma 2) Desert Island (CWA) Dingor (IceBreakr) Everon (CWA) Esseker Intro (Arma 1) Isla Duala (IceBreakr) Kolgujev (CWA) Lingor (IceBreakr) Lythium Malden (Arma 3) Malden (CWA) Panthera (IceBreakr) Sahrani (Arma 1) Rosö (SFP) Southeast Angola 1974 (IceBreakr) Stratis (Arma 3) Sturkö (SFP) Takistan (Arma 2) Tanoa (Arma 3) Thirsk Thirsk Winter Utes (Arma 2) Wamako (SFP) Vidda Winthera (IceBreakr) VR (Virtual Arsenal / Virtual Garage) Additional worlds will be added as requested
  18. Dahlgren

    Arma Server Web Admin

    Should be fixed with the recent update (18th of August)
  19. Dahlgren

    Arma Server Web Admin

    Currently only mods in the game folder is supported, support for other/more folders might be added later on
  20. Dahlgren

    SFP: Objects

    A new update has been pushed to Steam Workshop, 0.1.8 Fixed lod error on military sign and view geometry on a few houses. Transparency issue on Mob Storage and Brick Building. Interior on factory not showing Animation fixed on "house2" and "house4" https://steamcommunity.com/sharedfiles/filedetails/?id=901757999
  21. Dahlgren

    SFP: Sturkö Island

    A new update has been pushed to Steam Workshop Fixed floating store in south part. Corrected height on school. New sign when you enter Sturkö from the mainland. https://steamcommunity.com/sharedfiles/filedetails/?id=914229902
  22. Dahlgren

    How do I use mod factions in Combat Patrol?

    See this thread
  23. Dahlgren

    Updates on all branches

    There's a forum dedicated to the dev branch with a changelog thread
  24. Dahlgren

    Arma Server Web Admin

    What is the host field defined as in the config? It's better to leave it as '0.0.0.0' or null otherwise it will limit which network interfaces that are allowed to access the web admin
  25. Dahlgren

    Arma Server Web Admin

    You do not need to run any extra web servers if you don't want to, the application has an internal web server. What does your config.js look like, is the port defined as 3000 there as well?
×