Brad just said you cannot use get_cvar_str the same way.
Don't use it like this
Code:
if(!get_cvar_str("sshp_welcomemsg")=="")
{
//
}
Use this
Code:
new str[64];
get_cvar_string("sshp_welcomemsg",str,63);
if(!str || !get_cvar_num("WHATEVER YOUR ON / OFF CVAR IS")
{
return 0;
}
__________________