this is a command , that work but...
Code:
register_concmd("artime_cfg","change_time",ADMIN_CVAR,msg04[LANG])
when i type
artime_cfg 5.0 in console
i have that
AMX unknow command
AMXX set cvar anti_respawn_time 0.00000.0
Code:
public change_time( id,level,cid )
{
new cmds[32]
new artime = read_argv(1,cmds,31)
client_cmd(id, "amx_cvar anti_respawn_time %f.0",artime)
}
Why ?????
and what is not good in that code
__________________