Log in

View Full Version : Mimimize client? and typing w/ simba



Frozenfire216
09-17-2012, 10:03 PM
Basically, I am hosting servers for a FPS game and I want to know if Simba should work for it as an autotyper.

The first thing is, does Simba have a function that minimizes client? Similar to ActivateClient except it minimizes?

The second thing is, does Simba have the functionality to type something? e.g "welcome to the server"

If both answers are yes above, can I have 3 clients minimized, Simba activates one, types something in, and minimizes it, then moves on to the next client and repeats? If no for this, can you have 3 versions of Simba running same script simultaneously, each for a different client?

Last but not least, I want it to simply type something whenever i hit F6 (or some other key, it doesn't matter), for example "Go to example.com for more info!"

Thanks for all the help!

x[Warrior]x3500
09-17-2012, 10:32 PM
afaik, simba doesnt work with full screen games.

Frozenfire216
09-17-2012, 10:43 PM
Its not full screen. I shrunk the windows.

x[Warrior]x3500
09-17-2012, 10:58 PM
1. set client as desktop
2. create dtm/bmp of the game Icon (from the bar on the bottom) and the - (minimize button on top right).
3. create a "open game" procedure that will finds bmp/dtm in box(+ X.offset) each game when the time comes. (or even just mousebox this, no need for dtm if you have static coords)
4. create a minimize procedure that minimizes the client using dtm/bmp
5. create an autotalkin procedure (typesend).
6. put it all together and ur set

Frozenfire216
09-17-2012, 11:19 PM
I thought it might be something like that, but i hoped i wouldn't have to do it. One last question. How do i make it so whenever f6 is pressed it types?

x[Warrior]x3500
09-17-2012, 11:49 PM
isfkeydown(6);

Frozenfire216
09-17-2012, 11:57 PM
k ty