you cannot format strings like that in an equali, you need to setup a var and format the string into that then use it in the equal.... also %s is string, %f is float. And your cvars is registered as "amx_teamA". This might work.
Code:
new temp[32]
get_cvar_string(temp,31,"amx_team")
format(temp,31, "%s ready", temp)
if ( equali( CheckSay, temp ) ) {
set_cvar_num( "sv_restartround", 1 )
}
__________________