From 0f711cd47912575ba304b1c0c0de69446f19fd48 Mon Sep 17 00:00:00 2001 From: Borja Ferrer Date: Mon, 1 Jan 2007 23:14:20 +0000 Subject: [PATCH] more comments --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40263 --- plugins/include/sourcemod.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/include/sourcemod.inc b/plugins/include/sourcemod.inc index a0d93225..deef6f13 100644 --- a/plugins/include/sourcemod.inc +++ b/plugins/include/sourcemod.inc @@ -145,6 +145,7 @@ native GetClientCount(bool:inGameOnly=true); * @param name Buffer to store the client's name. * @param maxlen Maximum length of string buffer (includes NULL terminator). * @return True on success, false otherwise. + * @error If the client is not connected an error will be thrown. */ native bool:GetClientName(client, String:name[], maxlen); @@ -155,6 +156,7 @@ native bool:GetClientName(client, String:name[], maxlen); * @param name Buffer to store the client's ip address. * @param maxlen Maximum length of string buffer (includes NULL terminator). * @return True on success, false otherwise. + * @error If the client is not connected an error will be thrown. */ native bool:GetClientIP(client, String:ip[], maxlen); @@ -165,6 +167,7 @@ native bool:GetClientIP(client, String:ip[], maxlen); * @param auth Buffer to store the client's auth string. * @param maxlen Maximum length of string buffer (includes NULL terminator). * @return True on success, false otherwise. + * @error If the client is not connected an error will be thrown. */ native bool:GetClientAuthString(client, String:auth[], maxlen);