Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Question Are remote management servers allowed?

Joined
May 1, 2016
Messages
42
I want to add remote management to my scripts so I can access them via mobile and stop them or change settings if I feel like it.

I'm sure doing this on a private script is fine, but say I was going to release to the Bot store would this functionality be allowed?

Would send all data through SWS (Websocket) to my host.

Long Polling is also an option.
 
Last edited:
Joined
May 1, 2016
Messages
42
Not sure what SWS is, but if you use servers, php files to manipulate the script, you are perfectly fine.

SWS is SecureWebsocket.

PHP wouldn't work for sending requests to the script unless I implemented long polling.
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,053
The communication will be evaluated upon pushing to queue for safety. The client-side response to server-side commands needs to be very clearly defined in the code and limited in scope to relatively simple things. Changing settings and stopping/pausing the bot seems fine to me.
 
Joined
May 1, 2016
Messages
42
The communication will be evaluated upon pushing to queue for safety. The client-side response to server-side commands needs to be very clearly defined in the code and limited in scope to relatively simple things. Changing settings and stopping/pausing the bot seems fine to me.

Understood, I will make sure that the Client (Bot) clearly demonstrates the logic executed when I implement this into a public script, that way there will be no question of malicious intent.
 
Top