View Single Post
v1uuu
New Member
Join Date: Dec 2011
Old 12-08-2011 , 14:27   Re: SourceMod 1.4.1 Released
#9

Hiho ;D,

CS_GetClientClanTag, which was implemented in the 1.4 version of sourcemod, isn't really working for me. I tried it on 2 servers, but nearly with the same output.

My Code:
PHP Code:
  new String:ct[50];
  new 
String:name[50];
  
CS_GetClientClanTag(clientctsizeof(ct));
  
GetClientName(client,name,sizeof(name)); 
  
PrintToConsole(client,"-> %s - Clantag = '%s'",name,ct); 
And output is something like:
PHP Code:
  -> _v1uuu^# - Clantag = '?c?'
   
(Some special characters
When i change my clantag, it doesn't affect the output, but when i reconnect, the output is something else, which i don't really understand.

Is CS_GetClientClanTag bugged, or is it just not working for me?
I want to mention that CS_SetClientClanTag is working, only the get-method isn't working.

Thanks for your replies,
v1uuuu

Last edited by v1uuu; 12-08-2011 at 14:28.
v1uuu is offline