I start my server up via a batch script which keeps it alive should it crash. the text below, in case anyone is wondering, is what I use:
I needed to restart my server after making a simple timelimit change in one of my config files. Not wanting to wait until the round ended, I simply typed quit into the console as I always do. Well something odd happened this time, my server would appear to startup, it would fail, then the batch file would attempt to restart it again, still to no avail.
I know everything is installed correctly and works, becuase if I start up my server by typing "start /DC:\css /WAIT /AboveNormal C:\css\srcds.exe -console -autoupdate -game cstrike +map surf_greatriver +maxplayers 20 -tickrate 66 +fps_max 0 +mp_dynamicpricing 0" into a command prompt instead of running the batch file, it all works just fine. Even with and without running srcdsfpsboost.exe, no problems as long as I start it manually from the command line. I even tried messing with data execution prevention with no success.
Right before the server crashes, this is what is displayed, which can be seen in the screenshot below:
http://img183.imageshack.us/img183/5670/wtfjb3.jpg
I've tried searching using those errors as well, with little useful info. I would greatly appreciate if someone can offer any advice, becuase I really don't feel like trying something as drastic as a clean install of srcds or even a format.
I'm running the latest versions of Mani, event scripts and event scripts tools. If you need any of my config files, please let me know and I will post them as well.
UPDATE: I've found that it will run fine one time-only if started manually from a command prompt, but if I exit or it crashes, entering the same "C:\css\srcds.exe -console -autoupdate -game cstrike +map surf_greatriver +maxplayers 20 -tickrate 66 +fps_max 0 +mp_dynamicpricing 0" will give me the same silent crash.
Code:
echo off
cls
title Server Keepalive
start /DC:\css /B C:\css\srcdsfpsboost.exe
:hlds
echo (%date%)(%time%) SERVER STARTED
echo ==============================================
start /DC:\css /WAIT /AboveNormal C:\css\srcds.exe -console -autoupdate -game cstrike +map surf_greatriver +maxplayers 20 -tickrate 66 +fps_max 0 +mp_dynamicpricing 0
echo (%date%)(%time%) WARNING: CRASH
goto hlds
I needed to restart my server after making a simple timelimit change in one of my config files. Not wanting to wait until the round ended, I simply typed quit into the console as I always do. Well something odd happened this time, my server would appear to startup, it would fail, then the batch file would attempt to restart it again, still to no avail.
I know everything is installed correctly and works, becuase if I start up my server by typing "start /DC:\css /WAIT /AboveNormal C:\css\srcds.exe -console -autoupdate -game cstrike +map surf_greatriver +maxplayers 20 -tickrate 66 +fps_max 0 +mp_dynamicpricing 0" into a command prompt instead of running the batch file, it all works just fine. Even with and without running srcdsfpsboost.exe, no problems as long as I start it manually from the command line. I even tried messing with data execution prevention with no success.
Right before the server crashes, this is what is displayed, which can be seen in the screenshot below:
http://img183.imageshack.us/img183/5670/wtfjb3.jpg
I've tried searching using those errors as well, with little useful info. I would greatly appreciate if someone can offer any advice, becuase I really don't feel like trying something as drastic as a clean install of srcds or even a format.
I'm running the latest versions of Mani, event scripts and event scripts tools. If you need any of my config files, please let me know and I will post them as well.
UPDATE: I've found that it will run fine one time-only if started manually from a command prompt, but if I exit or it crashes, entering the same "C:\css\srcds.exe -console -autoupdate -game cstrike +map surf_greatriver +maxplayers 20 -tickrate 66 +fps_max 0 +mp_dynamicpricing 0" will give me the same silent crash.