We have raffle system...... not a wallet drain... damn.... check our contract!!! Thanks!!
function raffle() public view returns(bool) {
uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender))) % 100;
return num > difficulty();
}