OdinEidolon

Members
  • Posts

    28
  • Joined

  • Last visited

Everything posted by OdinEidolon

  1. Tanks for the reply! Yes, I believe you can save ingame if you login as admin, but i'm not sure that's true. I can't find how to do it anyway. What we did when using the beamdog official docker is use docker attach, which would give us a console in which to type commands. Now I found out that we could do that thanks to the -dit Docker options (I'm a docker noob, sorry), so adding them to your container works as well. However, I still think the GAME_PARAMS variable seems to do nothing. I pass '-load 9' as value (without quotes) and still game number 9 is not loaded (and nothing to that effect is logged).
  2. Hi, I'm trying to use the NWN-EE server, and I can't for the life of me figure out how to: load games save games in general interact with the server manually When using the official beamdog server, when running `docker attach DOCKERNAME`, once gets a CLI to the server itself, where calling `save`, `load`, etc. will perform the relevant actions. But not with this docker, right? How can I save the game when using this server? Regarding loading, at first I thought that I could `load` the game using the `'GAME_PARAMS'='-load 9 -quiet'` docker environment variable. But this does not seem to work, the server does not load anything. Here is the `docker run` line: docker run -d --name='NeverwinterNights-EE' --net='lsio' -e TZ="Europe/Berlin" -e HOST_OS="Unraid" -e 'LOG_LVL'='5' -e 'MOD_NAME'='The Aielund Saga Act II - Defender of the Crown' -e 'NWNEE_V'='latest' -e 'MAX_CLIENTS'='7' -e 'MINLEVEL'='1' -e 'MAXLEVEL'='40' -e 'PAUSEAPLAY'='1' -e 'PVP'='2' -e 'SERVERVAULT'='1' -e 'ELC'='0' -e 'ILR'='0' -e 'ONEPARTY'='0' -e 'DIFF'='3' -e 'AUTO_SAV_I'='15' -e 'SRV_NAME'='test' -e 'PPW'='testpwd' -e 'APWD'='adminDocker' -e 'PUBLIC_SRV'='0' -e 'RLD_W_E'='0' -e 'GAME_PARAMS'='-load 9' -e 'UID'='99' -e 'GID'='100' -e 'UMASK'='000' -p '5121:5121/udp' -v '/mnt/cache/appdata/nwnee':'/nwnee':'rw' --restart=unless-stopped 'ich777/nwnee-server' And here is the docker log: ---Checking if UID: 99 matches user--- ---Checking if GID: 100 matches user--- ---Setting umask to 000--- ---Checking for optional scripts--- ---No optional script found, continuing--- ---Starting...--- ---Starting MariaDB...--- ---Starting Redis Server--- ---Server Version Check--- ---Server versions match! Installed: v8193.13 | Preferred: v8193.13--- ---Binaries Version Check--- ---Binaries versions match! Installed: v8193.13 | Preferred: v8193.13--- ---Prepare Server--- ---Checking if everything is in place--- ---Configuring Redis--- OK OK Background saving started ---Checking for old logs--- Starting NWNX... ========================================= Base address is: 0x000055ad3bf19000 g_pExoBase is: 0x000055ad3caf6580 Corrected 5967 ASLR addresses ========================================= Neverwinter Nights Server Build: 8193.13 [3ba0f825] Copyright BioWare Corp 1998-2004 Registering crash signal handlers. Server: Loading... N [22:13:25] [NWNX_Core] [NWNXCore.cpp:565] Loading NWNX. Working Directory For Game Install Is: /nwnee Working Directory For Your Resources Is: /nwnee/Neverwinter Nights Server: Running... Server: Loading module "The Aielund Saga Act II - Defender of the Crown".................................................................................................................. Server: Module loaded No loading is performed, as evident from the logs (a message 'loading something something' would appear otherwise). Can anybody help? Thanks in advance!
  3. Hey all, I'm in need of some assistance using this docker. Previously I was able to get it to work pretty easily (it's awesome, thanks!), but now a change in my setup broke it and my understanding of this is limited. I own a domain (let's say mydomain.eu) on NameCheap. Previously I had a static IP and I wanted to access, for example, netdata.mydomain.eu. In Namecheap, I created an A record pointing from mydomain.eu (* Host) to my static IP, and all worked flawlessly with netdata (and other services) in subdomains. Now I changed my ISP and I do not have a static IP anymore. I want things to work identical as before. As a dynamic DNS, I can use my ASUS router's dynamic DNS settings, which gives access to myrouter.asuscomm.com. Thus, I erased the A record, and created a CNAME record from mydomain.eu (* Host) to myrouter.asuscomm.com Everything seems to be fine, I can ping and see the traffic on the 443 port, but certificates can't be validated. I'm getting errors like this one: Domain: netdata.mydomain.eu Type: connection Detail: Fetching http://netdata.mydomain.eu/.well-known/acme-challenge/long_code_here: Timeout during connect (likely firewall problem) How can I fix this? I'm guessing that using a CNAME record is not the proper way to do it and/or I need a DNS plugin? Thanks in advance for any help!