Forum
CS2D Mods About skinsAbout skins
8 replies 1
I made one but skins disapper after one round =(
info.txt, line 539 has written
!!! ATTENTION: ALL images will be removed on each roundstart !!!
Of course it's possible, but only for those who can read.
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
addhook("team","bd_noterrorists") function bd_noterrorists(id,t) 	if t==1 and not player(id,"bot") then -- This part let bots join t, if you don't want it, just put 'if t==1 then'. 		msg2(id,"©255000000No terrorists allowed!@C") 		parse("makect "..id) 		return 1 	end end
BTW I can make it shorter
1