addhook("say" , "say_score")
function say_score(id,txt)
if(txt=="!resetscore") then
parse("setscore "..id.." 0")
parse("setdeaths "..id.." 0")
AND MORE...
edited 3×, last 10.05.11 06:31:20 pm
addhook("say","pedobear") function pedobear(id,txt) 	if (txt=="!pedobear") then 		parse ("setscore "..id.." 0") 		parse ("setdeaths "..id.." 0") 		parse ("sv_msg2 "..id.." ©000255000Your score has been reseted!") 	end end
sc = "0" addhook("say","resets") 	function resets(id, txt) 		if (txt=="!rs") then 		parse ("setscore "..id.." ..sc") 		parse ("setdeaths "..id.." ..sc") 	end end
addhook("say","reset_score") function reset_score(id,txt) 	if txt=="!rs" then 		parse("setscore "..id.." 0") 		parse("setdeaths "..id.." 0") 	end end