First off, I really don't like your current approach. I disagree with anything which requires obfuscating code delivered to your clients on general principle - if you produced it under contract to them, then they own it unless the contract says otherwise, or at least they will once they've paid, and I do not believe that it's right to deny them the ability to take it elsewhere for further development if they choose to stop working with you at some point in the future. Also keep in mind that this makes it more difficult for you to drop them as a client if they continue having payment problems, since you've taken deliberate steps to ensure that, if you stop working for them, they're screwed. Retain customers by providing good service, not by planting bombs that only you can defuse.
Beyond that, given the current legal climate in much of the world regarding "hacking", there's a very real chance that you could find yourself in legal trouble for using any such scheme, as few courts will recognize a difference between what you're doing and actively breaking into their computers to manually disable the software. I don't know about Hungary, but I suspect that a skilled lawyer in the US could probably even find a way to spin your methods into a "terrorism" charge.
The final issue I have with your approach is that a loss of network connectivity will also kill off your application. If it's an online application or something similar which inherently requires connectivity to operate, then losing their connection will kill it anyhow without requiring any action on your part. If it's something that can reasonably run offline, then you are in the wrong for preventing them from continuing other business activities while waiting for connectivity to be restored.
With all of that out of the way, when I first started working independently, my initial client/former employer had a habit of taking their time to pay, but it always did get paid eventually, so I didn't worry too much about it - right up until they went bankrupt and took four months of unpaid invoices with them. Since then, I have adopted a policy of not performing any work for clients who have invoices more than 30 days past due. I've only had to actually stop work for one client in nearly five years. Pointing out that work on their project will stop unless I'm paid within the next week has proved very effective in the few cases where I've had to do so.
If you're doing web-based development, another popular option is to deploy the code to your own server, where they can test it to their heart's content before paying, then give them their own copy of the code to run on their server only after they've paid.
A third widely-used technique is to require at least partial advance payment. For fixed-cost projects, I've seen a lot of people who require between 25% and 50% of the project cost to be paid before they begin work. Advance payment approaches are less common for hourly work, but there are also a few who will bill for a certain number of hours in advance, then go back to the client for further advance payments as those hours are used. (I'm not quite sure how they manage to avoid over-billing and having paid-but-unused hours left over at the end of the project, though.)