Open GoogleCodeExporter opened 8 years ago
Maybe if there was a variable that was set when you did !spechud which confogl
then read, someone who wants it permanently disabled could set that variable in
their autoexec. Just throwing out ideas.
Original comment by shadowph...@gmail.com
on 5 Jul 2011 at 2:03
I believe we can do something like this with client cookies:
http://docs.sourcemod.net/api/index.php?fastload=file&id=54&
But I don't know much about them.
Original comment by prodigysim@gmail.com
on 5 Jul 2011 at 4:57
Suggestion: Use setinfo instead of client cookies.
{{{
decl String:buffer[64];
GetClientInfo(client, "confogl_showspechud", buffer, sizeof(buffer));
StripQuotes(buffer);
TrimString(buffer);
g_bShowHud[client] = bool:StringToInt(buffer);
}}}
That way the client can put setinfo "confogl_showspechud" "0" in their autoexec
config if they wish to always play with disabled spechud.
Original comment by MrZer...@gmail.com
on 15 Jul 2011 at 2:23
Original issue reported on code.google.com by
shadowph...@gmail.com
on 5 Jul 2011 at 6:08