SFPS记录器
SFPSlogger
76561198006592627
Steam工坊
预览截图
1 张图片
主预览图
左右滑动查看更多 · 点击图片查看原图
模组介绍
查看英文原文
Clean and Stackable
Prints the Server FramesPerSecond into the shootergamelog.
You need to run your server with the following commandline option:
-ServerGameLog
GameUserSettings
PrintInterval=10 > float value
PrintAverageOf=60 > integer value
PrintOnlyBelow=0 > float value
HTTPgetURL="linktoRAWjsonfilehere" > if left empty fallback to ini values, the quotes are needed
HTTPpostURL="linktobackendhere" > if left empty fallback to ini values, the quotes are needed
the get URL needs to contain the RAW content of a json file. The structure of the file looks like this:
{
"mod": "SFPSlogger",
"HTTPpost": "",
"UpdateInterval": 600,
"PrintInterval": 1,
"PrintAverageOf": 60,
"PrintOnlyBelow": 0
}
UpdateInterval > time in seconds the mod is going to make another GET request to update the settings
PrintOnlyBelow > if not 0 "PrintAverageOf" will be ignored and the mod prints on each interval IF the SFPS are below that value
If "PrintAverageOf=0" then the mod is going to print the SFPS each "PrintInterval" (default 10 seconds) into the Log
If "PrintAverageOf=" is not "0" then the mod is going to store the SFPS each "PrintInterval" (default 10 seconds) and prints the average stored SFPS as soon as it stored the amount you've set in "PrintAverageOf="
e.g.:
PrintInterval=1 PrintAverageOf=60
would result in one print every 60 seconds
PrintInterval=2 PrintAverageOf=60
would result in one print every 120 seconds