halloween: derp

This commit is contained in:
neon 2019-09-26 00:41:09 +02:00
parent 70a82bfe6a
commit d260efa604

View File

@ -232,7 +232,7 @@ public void SQL_OnDatabaseConnect(Database db, const char[] error, any data)
g_hDatabase = db;
char sQuery[256];
Format(sQuery, sizeof(sQuery), "CREATE TABLE IF NOT EXISTS halloween_table (`steam_auth` varchar(64), `name` int varchar(256), `collected` int(16), PRIMARY KEY (`steam_auth`))");
Format(sQuery, sizeof(sQuery), "CREATE TABLE IF NOT EXISTS halloween_table (`steam_auth` varchar(64), `name` varchar(256), `collected` int(16), PRIMARY KEY (`steam_auth`))");
g_hDatabase.Query(SQL_OnTableCreated, sQuery, _, DBPrio_High);
}
@ -357,6 +357,9 @@ public void OnClientPostAdminFilter(int client)
//----------------------------------------------------------------------------------------------------
public void OnRoundStart(Event hEvent, const char[] sEvent, bool bDontBroadcast)
{
if (!g_hCVar_CollectablesEnabled.BoolValue)
return;
g_iCounter = 0;
CreateTimer(10.0, CheckPlayerCount, INVALID_HANDLE, TIMER_FLAG_NO_MAPCHANGE);
}
@ -381,7 +384,7 @@ public Action Command_HighScore(int client, int args)
{
char sQuery[255];
Format(sQuery, sizeof(sQuery), "SELECT * from halloween_table order by collected desc limit %d", g_hCVar_HighscoreDisplay.IntValue);
g_hDatabase.Query(SQL_OnQueryCompletedCheck, sQuery, GetClientSerial(client));
g_hDatabase.Query(SQL_OnQueryCompletedHighscore, sQuery, GetClientSerial(client));
return Plugin_Handled;
}