added amb1341 - OnClientPostAdminFilter

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401837
This commit is contained in:
David Anderson
2008-01-03 19:40:55 +00:00
parent 9b6c6c1fcd
commit 89ac3a14ba
2 changed files with 23 additions and 0 deletions
+17
View File
@@ -136,6 +136,23 @@ forward OnClientAuthorized(client, const String:auth[]);
*/
forward Action:OnClientPreAdminCheck(client);
/**
* Called directly before OnClientPostAdminCheck() as a method to
* alter administrative permissions before plugins perform final
* post-connect operations.
*
* In general, do not use this function unless you are specifically
* attempting to change access permissions. Use OnClientPostAdminCheck()
* instead if you simply want to perform post-connect authorization
* routines.
*
* See OnClientPostAdminCheck() for more information.
*
* @param client Client index.
* @noreturn
*/
forward OnClientPostAdminFilter(client);
/**
* Called once a client is authorized and fully in-game, and
* after all post-connection authorizations have been performed.