+ Begin work on wave null
+ Added idle server restart
+ Fixed log spam of server trying to stop invalid sounds
+ Begin work on modified morecolors system
This commit is contained in:
2025-08-22 23:11:53 -04:00
parent 6778d13c85
commit ceea9f0a9e
6 changed files with 711 additions and 8 deletions

View File

@@ -12,6 +12,7 @@ public void OnClientDisconnect(int client) {
GetClientInfo(client, "name", clientName, 128);
Format(query, sizeof(query), "INSERT INTO ass_activity (name, steamid, date, seconds) VALUES ('%s', %d, CURRENT_DATE, %d) ON DUPLICATE KEY UPDATE name = '%s', seconds = seconds + VALUES(seconds);", clientName, steamID, GetClientMapTime(client), clientName);
Ass_Database.Query(Database_FastQuery, query);
if (GetClientCount(false) == 0) { CreateTimer(600.0, TimedOperator, 99999);}
}
//Check who spawned and log their class
public Action EventSpawn(Event Spawn_Event, const char[] Spawn_Name, bool Spawn_Broadcast) {