sourcemod/plugins/admin-base/admin-base.sp

21 lines
478 B
SourcePawn
Raw Normal View History

#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 */
public OnRebuildAdminCache(cache_flags)
{
RefreshLevels();
}