thanks for helping fysiks and Exolent
I didn't understand you fysiks, my if statement are kill_counter[id]<3 etc...
as i said probem is that my statements aint 1 or 0 like in tutorial
i solved the problem with menu, it's working, but on other way

still want to know how to do it like this...
two more question
1. is there any better way to set task on enemy players
PHP Code:
for (new i=1; i<=g_maxplayers;i++)
{
if(cs_get_user_team(i) != cs_get_user_team(id))
{
set_task(.......
in this case task will be set to every player individualy..
any one know the better way of setting task on enemy team
2. how to disable radar for 15 sec
i have one idea, but i dont know how good is it..
PHP Code:
if(something[id)
{
message_begin(MSG_ALL,gmsgHideWeapon,{0,0,0},0)
write_byte(8)
message_end()
set_task(15.0....
}
and in new task to set that "something[id] = false....
but will it work?