addhook("say","save_say")
function save_say(id,txt)
if (txt=="money") then
parse("setmoney "..id.."..player"id,"money")-16000
return
end
end
addhook("say","save_say") function save_say(id,txt) if (txt=="money") then parse("setmoney "..id.." -16000") end end
addhook("say","save_say") function save_say(id,txt) 	if (txt=="money") then 		parse("setmoney "..id.." "..(player(id,"money")-16000)) 		return 1 	end end
addhook('say', 'AA_say') function AA_say(id, txt) 	if txt == 'money' then 		if player(id, 'money') == 16000 then 			parse('setmoney '..id..' 0') 		else 			msg2(id, 'Not enough money, punk@C') 		end 	return 1; 	end end