2007-01-29 20:36:02 +01:00
|
|
|
#include <sourcemod>
|
|
|
|
#include <textparse>
|
|
|
|
|
|
|
|
public Plugin:myinfo =
|
|
|
|
{
|
|
|
|
name = "Admin Base",
|
|
|
|
author = "AlliedModders LLC",
|
|
|
|
description = "Reads admin files",
|
|
|
|
version = "1.0.0.0",
|
|
|
|
url = "http://www.sourcemod.net/"
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Various globals */
|
|
|
|
new AdminFlag:g_FlagLetters[26]; /* Maps the flag letters */
|
|
|
|
new bool:g_LoggedFileName = false; /* Whether or not the file name has been logged */
|
2007-01-30 00:09:11 +01:00
|
|
|
new g_ErrorCount = 0;
|
2007-01-29 20:36:02 +01:00
|
|
|
|
|
|
|
public OnRebuildAdminCache(cache_flags)
|
|
|
|
{
|
|
|
|
RefreshLevels();
|
|
|
|
}
|