2019-11-06 18:57:55 +01:00
|
|
|
#pragma semicolon 1
|
|
|
|
|
|
|
|
#include <sourcemod>
|
|
|
|
#include <files>
|
|
|
|
|
|
|
|
float g_fUptime;
|
|
|
|
int g_iRestartCountdown;
|
|
|
|
|
|
|
|
public Plugin myinfo =
|
|
|
|
{
|
|
|
|
name = "UptimeRestart",
|
|
|
|
author = "Dogan",
|
|
|
|
description = "Display Server Uptime and do controlled Restarts",
|
2019-11-07 14:59:46 +01:00
|
|
|
version = "1.1.0",
|
2019-11-06 18:57:55 +01:00
|
|
|
url = ""
|
|
|
|
};
|
|
|
|
|
|
|
|
public void OnPluginStart()
|
|
|
|
{
|
2019-11-07 15:52:16 +01:00
|
|
|
RegAdminCmd("uptime", Command_Uptime, ADMFLAG_GENERIC, "Displays server Uptime");
|
|
|
|
RegAdminCmd("sm_uptime", Command_Uptime, ADMFLAG_GENERIC, "Displays server Uptime");
|
2019-11-06 18:57:55 +01:00
|
|
|
|
|
|
|
g_iRestartCountdown = 5;
|
|
|
|
GetUptimeIfControlledRestart();
|
|
|
|
|
|
|
|
CreateTimer(60.0, CheckRestart, _, TIMER_REPEAT);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void GetUptimeIfControlledRestart()
|
|
|
|
{
|
|
|
|
File UptimeFile = OpenFile("uptime.txt", "r");
|
|
|
|
|
2019-11-07 14:59:46 +01:00
|
|
|
if(UptimeFile != null)//Server was restarted automatically by this plugin
|
2019-11-06 18:57:55 +01:00
|
|
|
{
|
|
|
|
char sUptime[64];
|
|
|
|
UptimeFile.ReadLine(sUptime, sizeof(sUptime));
|
|
|
|
g_fUptime = StringToFloat(sUptime);
|
|
|
|
delete UptimeFile;
|
|
|
|
DeleteFile("uptime.txt");
|
|
|
|
}
|
2019-11-07 14:59:46 +01:00
|
|
|
else//Server crashed or restarted manually
|
|
|
|
LogToFile("addons/sourcemod/logs/restarts.txt", "Server crashed or was restarted manually.");
|
2019-11-06 18:57:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public Action Command_Uptime(int client, int args)
|
|
|
|
{
|
2019-11-07 15:52:16 +01:00
|
|
|
float fUptime = GetEngineTime();
|
2019-11-06 18:57:55 +01:00
|
|
|
char sUptime[64];
|
|
|
|
int iUptime = RoundFloat(fUptime);
|
|
|
|
|
|
|
|
int iDays = (iUptime / 86400);
|
|
|
|
int iHours = (iUptime / 3600) % 24;
|
|
|
|
int iMinutes = (iUptime / 60) % 60;
|
|
|
|
int iSeconds = (iUptime % 60);
|
|
|
|
|
|
|
|
if (iDays)
|
|
|
|
Format(sUptime, sizeof(sUptime), "%d Days %d Hours %d Minutes %d Seconds.", iDays, iHours, iMinutes, iSeconds);
|
|
|
|
else if (iHours)
|
|
|
|
Format(sUptime, sizeof(sUptime), "%d Hours %d Minutes %d Seconds.", iHours, iMinutes, iSeconds);
|
|
|
|
else if (iMinutes)
|
|
|
|
Format(sUptime, sizeof(sUptime), "%d Minutes %d Seconds.", iMinutes, iSeconds);
|
|
|
|
else
|
|
|
|
Format(sUptime, sizeof(sUptime), "%d Seconds.", iSeconds);
|
|
|
|
|
2019-11-07 15:52:16 +01:00
|
|
|
ReplyToCommand(client, "[SM] Real Server Uptime: %s", sUptime);
|
2019-11-06 18:57:55 +01:00
|
|
|
|
2019-11-07 15:52:16 +01:00
|
|
|
fUptime = GetEngineTime() + g_fUptime;
|
|
|
|
iUptime = RoundFloat(fUptime);
|
2019-11-06 18:57:55 +01:00
|
|
|
|
2019-11-07 15:52:16 +01:00
|
|
|
iDays = (iUptime / 86400);
|
|
|
|
iHours = (iUptime / 3600) % 24;
|
|
|
|
iMinutes = (iUptime / 60) % 60;
|
|
|
|
iSeconds = (iUptime % 60);
|
2019-11-06 18:57:55 +01:00
|
|
|
|
|
|
|
if (iDays)
|
|
|
|
Format(sUptime, sizeof(sUptime), "%d Days %d Hours %d Minutes %d Seconds.", iDays, iHours, iMinutes, iSeconds);
|
|
|
|
else if (iHours)
|
|
|
|
Format(sUptime, sizeof(sUptime), "%d Hours %d Minutes %d Seconds.", iHours, iMinutes, iSeconds);
|
|
|
|
else if (iMinutes)
|
|
|
|
Format(sUptime, sizeof(sUptime), "%d Minutes %d Seconds.", iMinutes, iSeconds);
|
|
|
|
else
|
|
|
|
Format(sUptime, sizeof(sUptime), "%d Seconds.", iSeconds);
|
|
|
|
|
2019-11-07 15:52:16 +01:00
|
|
|
ReplyToCommand(client, "[SM] Cumulative Server Uptime: %s", sUptime);
|
2019-11-06 18:57:55 +01:00
|
|
|
return Plugin_Handled;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Action CheckRestart(Handle timer)
|
|
|
|
{
|
2019-11-07 14:59:46 +01:00
|
|
|
if(!IsItRestartTime())
|
2019-11-06 18:57:55 +01:00
|
|
|
return Plugin_Continue;
|
|
|
|
|
|
|
|
if(GetEngineTime() < 57500) //16 hours
|
|
|
|
return Plugin_Continue;
|
|
|
|
|
|
|
|
int iPlayers = GetClientCount(false);
|
|
|
|
for(int i = 1; i <= MaxClients; i++)
|
|
|
|
{
|
|
|
|
if(IsClientConnected(i) && IsFakeClient(i))
|
|
|
|
iPlayers--;
|
|
|
|
}
|
|
|
|
if(iPlayers > 1) //jenz's autism bot
|
|
|
|
return Plugin_Continue;
|
|
|
|
|
|
|
|
float fUptime = GetEngineTime();
|
|
|
|
g_fUptime = g_fUptime + fUptime;
|
|
|
|
|
|
|
|
char sUptime[64];
|
|
|
|
FloatToString(g_fUptime, sUptime, sizeof(sUptime));
|
|
|
|
File UptimeFile = OpenFile("uptime.txt", "w");
|
|
|
|
UptimeFile.WriteLine(sUptime);
|
|
|
|
delete UptimeFile;
|
|
|
|
|
|
|
|
CreateTimer(1.0, RestartCountdown, _, TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE);
|
|
|
|
|
|
|
|
return Plugin_Continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
stock bool IsItRestartTime()
|
|
|
|
{
|
|
|
|
int iTime = GetTime();
|
|
|
|
int iHour;
|
|
|
|
char sTime[32];
|
|
|
|
|
|
|
|
FormatTime(sTime, sizeof(sTime), "%H", iTime);
|
|
|
|
|
2019-11-13 14:44:40 +01:00
|
|
|
iHour = StringToInt(sTime[0]);
|
2019-11-06 18:57:55 +01:00
|
|
|
|
2019-11-17 13:17:01 +01:00
|
|
|
if (iHour >= 3 && iHour < 8)
|
2019-11-06 18:57:55 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Action RestartCountdown(Handle timer)
|
|
|
|
{
|
|
|
|
PrintCenterTextAll("WARNING: Restarting Server in %d.", g_iRestartCountdown);
|
|
|
|
PrintToChatAll("WARNING: Restarting Server in %d.", g_iRestartCountdown);
|
|
|
|
g_iRestartCountdown--;
|
|
|
|
|
|
|
|
if(g_iRestartCountdown < 0)
|
|
|
|
{
|
2019-11-06 19:02:47 +01:00
|
|
|
LogToFile("addons/sourcemod/logs/restarts.txt", "Successfully auto-restarted the Server.");
|
2019-11-06 18:57:55 +01:00
|
|
|
ServerCommand("_restart");
|
|
|
|
return Plugin_Handled;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Plugin_Handled; //Server is dead by here anyway xD
|
|
|
|
}
|