Enforcing the client

06/04/2021 15:26 waa2#1
Hey guys,
How can I enforce the client to use a gm command at the same time of its start?
for example, I want, when I start a client, the commands be used as default, something like /mapobj or /char commands. so, when I start the client, I should find the client using these commands without me without writing them in the console, that's what I mean.
Thanks in advance.
06/05/2021 09:35 OKeks#2
If you do not have to switch the language to use "~", you can simply write a macro with autoit/autohotkey, sending "~" and some other stuff to the client. It will be automatically placed into the GM console.

Code:
Identify client
sleep
send ~
sleep
send code
send enter key
sleep
...
06/08/2021 13:04 waa2#3
Quote:
Originally Posted by OKeks View Post
If you do not have to switch the language to use "~", you can simply write a macro with autoit/autohotkey, sending "~" and some other stuff to the client. It will be automatically placed into the GM console.

Code:
Identify client
sleep
send ~
sleep
send code
send enter key
sleep
...
thx bro, but is there any sro_client edit without the help of macro?