PDA

View Full Version : Multiple clients - autotyper?



vydamo
06-10-2017, 02:19 AM
Hi guys,

Trying to setup SIMBA to run multiple clients on a RSPS to autotype. I've selected the client but once i run the script as soon as i minimize it will either not type, or try to type in simba. If i go to a new client it will just type on that?

Any ideas? Is it possible to do?

Awkwardsaw
06-10-2017, 03:55 AM
simba is a little dumber than you might guess, it will only do exactly what you tell it to do, which is where SMART comes in, which only helps with the actual runescape client. if you want to autotype on anything that isn't the actual runescape you need to either keep the client open or somehow reconfigure SMART, which i cannot help you with

Twinki
06-10-2017, 04:20 AM
Simba uses SendInput (https://msdn.microsoft.com/en-us/library/windows/desktop/ms646310(v=vs.85).aspx) for it's Keyboard and Mouse methods, which requires whatever window to be in focus to properly work.


You could look into re-configuring SMART to load the RSPS's Applet, you can find SMART's source here. (https://github.com/BenLand100/SMART)

Or, with Simba 1.2, you could use the Win32 API and use either PostMessage (https://msdn.microsoft.com/en-us/library/windows/desktop/ms644944(v=vs.85).aspx) or SendMessage (https://msdn.microsoft.com/en-us/library/windows/desktop/ms644950(v=vs.85).aspx). You can use Slacky's Windows API Include (https://github.com/WarPie/Simba-Windows-API) to make it easier. This is how I handle botting on multiple NXT clients. However, PostMessage and GetMessage may not work on the RSPS while minimized, it's pretty iffy. You'd have to do some testing.

vydamo
06-10-2017, 04:30 AM
simba is a little dumber than you might guess, it will only do exactly what you tell it to do, which is where SMART comes in, which only helps with the actual runescape client. if you want to autotype on anything that isn't the actual runescape you need to either keep the client open or somehow reconfigure SMART, which i cannot help you with

Thanks for the reply..Reconfiguring SMART is definitely out of my league.


Simba uses -- This is how I handle multiple NXT clients.

Thanks heaps for the reply mate. But like stated above definitely out of my league. I might use VM's.

Citrus
06-10-2017, 05:19 AM
GetMessage

Just curious, what are you using GetMessage for?