View Single Post
  #2206  
Old 04.06.2022, 15:27
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by Mydgard View Post
... script to disable CRC Check for any unpacked files ...
Code:
/*
    Remove hashinfo from non-archive files
    Trigger: Packagzier Hook
*/

!link.crawledLink.archive && link.setProperty("HASHINFO", null);


Code:
/*
    Disable hashcheck
    Trigger: Packagzier Hook
*/

state == "BEFORE" && linkcheckDone && !link.crawledLink.archive && link.setProperty("ALLOW_HASHCHECK", false);

Last edited by mgpai; 04.06.2022 at 16:04. Reason: Script replaced.
Reply With Quote