Related commit : https://github.com/HerculesWS/Hercules/pull/842
if you have event scripts that uses *pcblockmove, its time to convert into *setpcblock
Example : (old)
pcblockmove(getcharid(CHAR_ID_ACCOUNT), true);
now should be
setpcblock(PCBLOCK_MOVE, true);
the new one is more flexible and can limit other actions too