Ok.
Ich Legastheniker hab jetzt doch eine Lösung dafür gefunden, und bin ganz stolz drauf. War nicht schwer:
<script type="text/javascript">
var allow = false;
function moveto(x, y)
{
if (allow != false)
{
this.parent.location.href = 'minmap.php?x='+x+'&y='+y;
}
}
function set()
{
allow = true;
}
window.setTimeout("set()", 4000);
</script>