Hi , I'm trying to make a script, the problem is that I just want to activate with CT, but also activates the T.
Is there any way of activating only the CT???
Sorry for my English. Admin/mod comment
Scripts belong to scripts. Moved. /EDIT: Actually, there's a second thread with the same problem. Trashed. 1
2
3
4
5
6
addhook ("team","penis");
function penis(id,team)
if (team~=2) then
parse ("makect "..id);
end
end
TimeQuesT has written
1
2
3
4
5
6
addhook ("team","penis");
function penis(id,team)
if (team~=2) then
parse ("makect "..id);
end
end
That's completely NOT what he asked for. Bro, double posts are a definite no no. 1
2
3
4
5
6
addhook ("spawn","loli");
function loli(id,team)
if (team==1) then
parse ("makect "..id);
end
end
this? Actually it's nearly the same, as mine.