Thise is my first script i've ever written from scratch. Its a hot dog hero script. I'm trying to use the holdmouse() and releasemouse() functions, but i'm having some problems. It doesn't click at that location, hold, and move to the releasemouse location. it just holds in that same location. Heres what i've written so far... Code (Text): program hotdoghero; begin clickmouse(113,427,true); wait(200); clickmouse(308,321,true); wait(400) holdmouse(363,259,true); releasemouse(591,248,true); end. any help with getting it to work? thanks in advanced
program hotdoghero; begin clickmouse(113,427,true); wait(200); clickmouse(308,321,true); wait(400); movemouse(363,259); wait(100); holdmouse(363,259,true); movemouse(591,248); releasemouse(591,248,true); end. there, that should work
thanks chelsea do you know how to make an aroow hold? i haven't been able to find that command yet...