Смысл скрипта: Пользователь может скачать только 10 файлов с сайта за день, сделать бы на JS..
Ниже я нашел код принцип которого: скачивать 1 фаил 1 раз, выложил может поможет..
Code
<script type='text/javascript'>
function getCookie(a){var b=document.cookie.match(new RegExp("(?:^|; )"+a.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g,"\\$1")+"=([^;]*)"));return b?decodeURIComponent(b[1]):undefined}function setCookie(b,f,c){c=c||{};var i=c.expires;if(typeof i=="number"&&i){var h=new Date();h.setTime(h.getTime()+i*1000);i=c.expires=h}if(i&&i.toUTCString){c.expires=i.toUTCString()}f=encodeURIComponent(f);var a=b+"="+f;for(var e in c){a+="; "+e;var g=c[e];if(g!==true){a+="="+g}}document.cookie=a}
</script>
<script type='text/javascript'>
$("a.download").click(function () {
setCookie("dl", "1", {expires: new Date("01 Jan 2020")});
});
if (getCookie("dl"))
$("a.download").hide();
</script>