Forum
CS2D Scripts Can someone make me a pistol script?Can someone make me a pistol script?
2 replies 1
Go to "More Settings" then find mp_unbuyable.
Add the things (ids) that you want to make unbuyable.
Then you're good to go.
EDIT: Did you just edited the thread? When I was answering, it didn't included the "!pistol" part.
1
2
3
4
5
6
2
3
4
5
6
addhook("say", "_say") function _say(id, message) 	if message == "!pistol" then 		parse("mp_unbuyable \"M3,XM1014,MP5,TMP,P90,MAC10,UMP45,AK-47,SG552,M4A1,Aug,Scout,AWP,G3SG1,SG550,Galil,Famas,M249,Tactical Shield\"") 	end end
1