lockieday Posted January 2, 2008 Posted January 2, 2008 hey, im new and im having a play around with Scite but ive looked around about on this site for like a manual or something to show me what the commands are, im currently working on a script for a game i like to play, i only need to know what the command is for "shift" and "left/right click". i just wanted to know what those were but i thought i might wanna see if there is a manual so i dont have to annoy you people with my noob questions lol thanks
Xav Posted January 2, 2008 Posted January 2, 2008 (edited) mouseclick("Bouton" , x, y ,Clicks ,Speed ) Example: mouseclick("left" , 100, 100,1 ,1 ) ("{SHIFTDOWN}") --> start to hold shift DIAJKSBDAJ ("{SHIFTUP}") --> stop shift Edited January 2, 2008 by Xav
lockieday Posted January 2, 2008 Author Posted January 2, 2008 mouseclick("Bouton" , x, y ,Clicks ,Speed )Example:mouseclick("left" , 100, 100,1 ,1 )("{SHIFTDOWN}") --> start to hold shiftDIAJKSBDAJ ("{SHIFTUP}") --> stop shiftwicked thanks so much. i was just working on it then with no help didnt get to far ill show ya what i did;While 1 ;- Loops forever Send("MouseClick("left")") Sleep (500) ;-sleeps for .5secondsWEnd ;- Loop end
lockieday Posted January 2, 2008 Author Posted January 2, 2008 wicked thanks so much. i was just working on it then with no help didnt get to far ill show ya what i did;While 1 ;- Loops forever Send("MouseClick("left")") Sleep (500) ;-sleeps for .5secondsWEnd ;- Loop endin my scite script file ive entered " ("{SHIFTDOWN}") "and ive saved me auto it file but it comes with an error when trying to do the command
Xav Posted January 2, 2008 Posted January 2, 2008 (edited) While 1 ;- Loops forever Send("MouseClick("left")") --> MouseClick("left") ; DONT PUT SEND Sleep (500) ;-sleeps for .5seconds WEnd ;- Loop end About shiftDown its like Start to hold shift and you need to do after ShiftUp to unpress shift So ::: While 1 MouseClick("left") Sleep (500) WEnd Edited January 2, 2008 by Xav
lockieday Posted January 2, 2008 Author Posted January 2, 2008 this is what it currently looks like ; While 1 Sleep (700) (SHIFTDOWN) MouseClick("left") Sleep (500) WEnd and its not working coz there something wrong with how i enterd the (SHIFTDOWN)
Xav Posted January 2, 2008 Posted January 2, 2008 (edited) This will work While 1 Sleep (700) ("{SHIFTDOWN}"); --> }" important put this !!! MouseClick("left") Sleep (500) ("{SHIFTUP}"); --> to unput shift... WEnd Edited January 2, 2008 by Xav
lockieday Posted January 2, 2008 Author Posted January 2, 2008 This will work While 1 Sleep (700) ("{SHIFTDOWN}"); --> }" important put this !!! MouseClick("left") Sleep (500) ("{SHIFTUP}"); --> to unput shift... WEnd nope no luck, i tried ("{SHIFTDOWN}") and it said error cannot phrase line, so i modified it to "{SHIFTDOWN}" and then came up with a different error....
lockieday Posted January 2, 2008 Author Posted January 2, 2008 dw i worked it out, it had to be; Send("{SHIFTDOWN}")
Xav Posted January 2, 2008 Posted January 2, 2008 dw i worked it out, it had to be;Send("{SHIFTDOWN}")Ohhh its true xD sorry And good luck didnt remember the send there xD
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now