Well some thing that make the mouse move about alot.
good for shaking target site.
sync on
sync rate 60
x=screen width()/2
y=screen height()/2
do
if rnd(1)=1
_x=-rnd(5)
else
_x=rnd(5)
endif
if rnd(1)=1
_y=-rnd(5)
else
_y=rnd(5)
endif
mmx=mousemovex()+_x+mousex()
mmy=mousemovey()+_y+mousey()
position mouse mmx,mmy
sync
loop
version 2
Rem ***** Main Source File *****
sync on
sync rate 60
x=screen width()/4
y=screen height()/4
do
a= rnd(7)
if a=1 or a=0
_x=rnd(15)
_y=-rnd(15)
endif
if a=2
_x=rnd(15)
_y=-rnd(15)
endif
if a=3
_x=rnd(15)
_y=rnd(15)
endif
if a=4
_x=_x
_y=rnd(15)
endif
if a=5
_x=-rnd(15)
_y=rnd(15)
endif
if a=6
_x=-rnd(15)
_y=_y
endif
if a=7
_x=-rnd(15)
_y=-rnd(15)
endif
`last_mmx=mmx
`last_mmy=mmy
mmx=mousemovex()+_x+mousex()
mmy=mousemovey()+_y+mousey()
position mouse mmx,mmy
`line mmx,mmy,last_mmx,last_mmy
sync
loop
Dark Physics makes any hot drink go cold.