edited 3×, last 30.07.14 04:23:53 am
Forum
CS2D Scripts Buy scriptBuy script
1 reply 1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
addhook("say","_say") function _say(id,txt) 	if txt == "@kit" then 		if player(id,"team") == 1 then 			parse("equip "..id.." ".. 73) 			parse("equip "..id.." "..51) 			msg2(id,"Items were taken!") 			return 1 		else 			msg2(id,"©255000000You must be terrorist to use this command!") 			return 1 		end 	end end
1