Jump to content
UBot Underground

Mouse Move Not Working As Expected


Recommended Posts

Hello Everyone,

 

Trying to make a command that will move the mouse around the screen for sites that are monitoring mouse movements via js. It seems that the plugin command does not accept variables for the x and y coordinates?

 

 

set(#xcored, 685, "Global")
set(#ycord, 900, "Global")
    loop while(#ycord >= 100) {
        decrement(#ycord)
        plugin command("WindowsCommands.dll", "move mouse", "*", "HwndWrapper[UBot Studio.exe;;39acbc4e-7417-4809-aae3-7aecdcb0bb88]", #xcord, #ycord)       
        
    }
Link to post
Share on other sites

This worked for me...also you have #xcord instead of #xcored ;)

 

set(#xcored, 685, "Global")
set(#ycord, 900, "Global")
loop while($comparison(#ycord">=", 100)) {
    decrement(#ycord)
    plugin command("WindowsCommands.dll""move mouse""PinterestScrape* - UBot Studio Professional Edition""HwndWrapper[uBot Studio.exe;;14782689-53ef-492b-b6b3-c1cb3a6e2f16]"#xcored#ycord)
}

 

Maybe use the wizard to get the Parent Window?

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...