djerden
Member-
Content Count
10 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout djerden
-
Rank
Private
-
I've gotten the fire bug on JIP as well. I've tried the video flush trick multiple times, and it does not clear it for me. It does eventually go away though, and not last forever.
-
[Dedicated] ServerSide settings, no grass and such
djerden replied to whisper's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
LOL...I see you were on the same thing Dirty. I PM'd Whisper & he updated dl site on this link. -
I know this post is a little old, but came in handy with the recent rash of ACE mod users crashing the server. Â I copied & pasted at least one of the .sqf files quoted in this thread, & it didn't work initially due to a syntax error (had extra line with ,; after all the mod names). Â For banning ACE mod, you just have to include one of the pbo names (no unpbo & unrap the confg file). Â Here's my reused & edited sqf (for some reason posting here alters the ..._IntroAnims"""", Â -- shouldn't be the " showing up at end):
-
I had this same freaking error...searched the forums here & found this post, after I tried the Windows update patch suggestion that didn't work... Deleting just the "\??\Volume" ones in the registry, as mentioned, did the trick for me too. Â Didn't have to touch my drive entries.
-
Go here http://www.kegetys.net/arma/ and grab the Arma tools...with that, you can right click on the mission .pbo file & extract it to a folder with all the goodies inside accessible ( the mission .sqm file, script .sqs files, etc.)
-
OK, that's a fix for WinXP....but what about dedi severs running Winserver 2003? The affinity to one cpu still helpful, or is there a similar fix?
-
For dedi server with the patch: I got it up & running by uploading the beta folder & the startbetapatch.bat file (just like on my client machine). Then, I edited the contents of the .bat file so the line reads like: START "" /D"%CD%" /B "%CD%\beta\arma_server.exe" -config=serverbeta.cfg -mod=beta This seems to work fine, & leaves your original server setup as is, so you can always run it stock too, just like your client machine. Â Hope this helps some other folks. Â Any other ideas or comments to add to this, feel free...I'm just a noob. Â
-
Anyone know if it's possible to assign an available ip address to ofp server, rather than it taking it's pick of several on a machine?
-
Added that, thanks. Don't guess that will affect those errors I posted.
-
OK, I've been using this forum to try & setup OFP on our new FC2 (from Redhat 9) server.  We transferred our OFP folder over, corrected the ofpserver script and got the seg fault right away.  Then, I made /ofp/libs with the enclosed downloaded libs linked in the above post & edited the ofpserver script again (following first post in this forum): cd ${OFP_DIR}   echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Starting server (port ${PORT})..." export LD_LIBRARY_PATH=/home/djerden/ofp/libs  ${SERVER} >>${LOGFILE} 2>&1 -server -config=${CONFIG} -port=${PORT} -pid=${PIDFILE}   if [ -f ${RUNFILE} ]; then echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Server died, waiting to restart..." sleep 5s   else echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Server shutdown intentional, watchdog terminating"   fi unset LD_LIBRARY_PATH done   ;; The server will start & run, but with "shutdown" command from admin in game for example, it throws a lot of errors in the nohup.out file: Stopping OFP server... Starting OFP server... date: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_2.3' not found (required by date) date: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_2.3.2' not found (required by /lib/tls/librt.so.1) date: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_PRIVATE' not found (required by /lib/tls/librt.so.1) date: /lib/ld-linux.so.2: version `GLIBC_2.1.1' not found (required by /home/djerden/ofp/libs/libc.so.6) date: /lib/ld-linux.so.2: version `GLIBC_2.2.3' not found (required by /home/djerden/ofp/libs/libc.so.6) date: /lib/ld-linux.so.2: version `GLIBC_2.2' not found (required by /home/djerden/ofp/libs/libc.so.6) date: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_2.3.2' not found (required by /lib/tls/libpthread.so.0) date: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_PRIVATE' not found (required by /lib/tls/libpthread.so.0) sleep: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_2.3' not found (required by sleep) sleep: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_2.3.2' not found (required by /lib/tls/librt.so.1) sleep: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_PRIVATE' not found (required by /lib/tls/librt.so.1) sleep: /lib/ld-linux.so.2: version `GLIBC_2.1.1' not found (required by /home/djerden/ofp/libs/libc.so.6) sleep: /lib/ld-linux.so.2: version `GLIBC_2.2.3' not found (required by /home/djerden/ofp/libs/libc.so.6) sleep: /lib/ld-linux.so.2: version `GLIBC_2.2' not found (required by /home/djerden/ofp/libs/libc.so.6) sleep: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_2.3.2' not found (required by /lib/tls/libpthread.so.0) sleep: /home/djerden/ofp/libs/libc.so.6: version `GLIBC_PRIVATE' not found (required by /lib/tls/libpthread.so.0) Any ideas how to resolve this, or does it matter?