thanks for reply
you will recieve free cookies

addhook("team","not")
function not(id,team)
if team==1 then
msg2(id,"©255000000No terrorists allowed!@C")
parse("makect "..id)
return 1
end
end
addhook("team","not")
function not(id,team)
if team==1 and not player(id,"bot") then -- I added something here as you can see.
msg2(id,"©255000000No terrorists allowed!@C")
parse("makect "..id)
return 1
end
end
addhook("team","not")
function not(id,team)
if team==0 then
msg2(id,"©255000000campaign map mode!@C")
parse("makect "..id)
return 1
end
end
addhook("join","make_team")
function make_team(id)
parse("makect "..id)
end
addhook("join","make_team")
function make_team(id)
if player(id,"bot")==1 then
parse("maket "..id)
else
parse("makect "..id)
end
end