I want to script commands in Discord such as !createaccount <name> <password> <gender>
and !addscript <name> <script>
. For the create account command, I send a request to the signup api, but get a captcha error. For the add script command I want it to modify a local place file where it would find a folder called ‘Scripts’ and it’ll input a String Value in it where the name would be the name input and the script will be the value input. I’m not sure where to start for that one. Can someone please help me by giving me and example on what to work on?
Unfortunately creating accounts can’t be done without needing to solve a captcha, and there is no way to bypass captchas. You can pay for captcha solving services, but this really isn’t good in the case of roblox since the captchas’ sole purpose is to stop account creation bots, and other types of bot programs.
In terms of the place file editing, hopefully someone else can answer. I have no idea how this could be done, but I could imagine it being pretty difficult, since the local place file itself is not in a “easy to edit form”, and isn’t meant to be edited outside of studio.
There’s something in the docs called captchaToken and captchaProvider, what would I put for those? I’m assuming if I get valid entries for those values, I would be able to solve the captcha, right?
Those both has to do with the solving of the captchas. I think the token is returned when the captcha is solved, which then allows you to continue with what you are doing. There isn’t any way to get past captchas without a human completing the puzzle, unless you’ve got a really smart solving bot, of which doesn’t yet exist.
But yes, if you get valid entries for those you should be able to continue. The hard part is getting those values. This is were captchas solving services could come in( please don’t use these for this ).
Yea, but isn’t there be a way to get the captcha in question, have the command author do it, and then it submits that?
I feel like this could be done, as this is basically what the paid services do. Unfortunately, I don’t know how, lol. Hopefully someone with more experience in this area will join the conversation, who might have a example of how to do this.