Jump to content

im new i dont know what commands are for


Recommended Posts

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

Link to comment
Share on other sites

mouseclick("Bouton" , x, y ,Clicks ,Speed )

Example:

mouseclick("left" , 100, 100,1 ,1 )

("{SHIFTDOWN}") --> start to hold shift

DIAJKSBDAJ

("{SHIFTUP}") --> stop shift

Edited by Xav
Link to comment
Share on other sites

mouseclick("Bouton" , x, y ,Clicks ,Speed )

Example:

mouseclick("left" , 100, 100,1 ,1 )

("{SHIFTDOWN}") --> start to hold shift

DIAJKSBDAJ

("{SHIFTUP}") --> stop shift

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 .5seconds

WEnd ;- Loop end

Link to comment
Share on other sites

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 .5seconds

WEnd ;- Loop end

in 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

Link to comment
Share on other sites

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 :P

So :::

While 1
MouseClick("left")  
Sleep (500) 
WEnd
Edited by Xav
Link to comment
Share on other sites

This will work

While 1
Sleep (700)
("{SHIFTDOWN}"); --> }" important put this !!!
MouseClick("left") 
Sleep (500) 
("{SHIFTUP}"); --> to unput shift...
WEnd
Edited by Xav
Link to comment
Share on other sites

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....
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...