Medusa Posted November 13, 2018 Author Share Posted November 13, 2018 8 minutes ago, Keyster99 said: I use sock5 proxies, can only use http? if I use http and then in osbot sock5 the accounts will be blocked instantly Sorry, but currently socks5 isn't supported, and I didn't realise HTTP proxies weren't supported by OSBot (Which I see now they are). I'll look into adding socks5 once I've got more time on my hands. Link to comment Share on other sites More sharing options...
Keyster99 Posted November 13, 2018 Share Posted November 13, 2018 57 minutes ago, Medusaa said: Sorry, but currently socks5 isn't supported, and I didn't realise HTTP proxies weren't supported by OSBot (Which I see now they are). I'll look into adding socks5 once I've got more time on my hands. Anyway, thanks for this, you're the best Link to comment Share on other sites More sharing options...
Dot Posted November 14, 2018 Share Posted November 14, 2018 I don't understand how it uses 1 email for all accounts? Are they actually verifiable? Anyway I might fork this and add a couple of the features you mentioned and PR, if you don't mind. Link to comment Share on other sites More sharing options...
Medusa Posted November 15, 2018 Author Share Posted November 15, 2018 (edited) 10 hours ago, Dot said: I don't understand how it uses 1 email for all accounts? Are they actually verifiable? Anyway I might fork this and add a couple of the features you mentioned and PR, if you don't mind. The email method works. your-email+1@gmail.com would just be an extension for your email, and it'll send the messages to the inbox of your-email@gmail.com. Sure. I made this project open-source in order for people to add their own features, fix bugs etc. On 11/13/2018 at 10:39 PM, Keyster99 said: Anyway, thanks for this, you're the best If you have any socks5 proxies you can give me in order to add the feature, I might be able to do it pretty soon. Edited November 15, 2018 by Medusaa Link to comment Share on other sites More sharing options...
Keyster99 Posted November 15, 2018 Share Posted November 15, 2018 3 hours ago, Medusaa said: The email method works. your-email+1@gmail.com would just be an extension for your email, and it'll send the messages to the inbox of your-email@gmail.com. Sure. I made this project open-source in order for people to add their own features, fix bugs etc. If you have any socks5 proxies you can give me in order to add the feature, I might be able to do it pretty soon. yea Link to comment Share on other sites More sharing options...
Medusa Posted November 22, 2018 Author Share Posted November 22, 2018 (edited) Semi-Custom Usernames are now available if you compile the source yourself (Thanks to @Dot). Pre-compiled jar will have this feature once I've gotten some more stuff added. Edited November 22, 2018 by Medusaa Link to comment Share on other sites More sharing options...
brayden921 Posted November 22, 2018 Share Posted November 22, 2018 On 11/13/2018 at 1:39 PM, Keyster99 said: Anyway, thanks for this, you're the best Hey Luffy! How're you and Sanji doing? @MedusaaThis looks badass! Link to comment Share on other sites More sharing options...
Aguero Posted November 22, 2018 Share Posted November 22, 2018 (edited) I think maybe in the distant future when you have time make it do tutorial island too? Would definitely be a good paid script for bot farmers or anyone else that uses several accounts. Edited November 22, 2018 by its zealous Link to comment Share on other sites More sharing options...
Medusa Posted November 22, 2018 Author Share Posted November 22, 2018 44 minutes ago, its zealous said: I think maybe in the distant future when you have time make it do tutorial island too? Would defiantly be a good paid script for bot farmers or anyone else that uses several accounts. This is free to use, so not sure what you mean by "good paid script" lol. You already have the possibility of launching each account using a script (Only Windows for now), so you can just have that launch the tutorial island script you want to use. Link to comment Share on other sites More sharing options...
Aguero Posted November 22, 2018 Share Posted November 22, 2018 (edited) Quote This is free to use, so not sure what you mean by "good paid script" lol. You already have the possibility of launching each account using a script (Only Windows for now), so you can just have that launch the tutorial island script you want to use. i know i was just saying it could become a good paid script (ik this is a free script) anywho thanks for providing us with this awesome free account maker Edited November 22, 2018 by its zealous Link to comment Share on other sites More sharing options...
Dot Posted November 23, 2018 Share Posted November 23, 2018 6 hours ago, its zealous said: i know i was just saying it could become a good paid script (ik this is a free script) anywho thanks for providing us with this awesome free account maker This isn't a "script" that runs in OSBot. It's a standalone program that creates accounts. Explv has a working (free and open source) tutorial island script which you can set to automatically launch after each account is created as per the listed feature. Link to comment Share on other sites More sharing options...
Aguero Posted November 23, 2018 Share Posted November 23, 2018 (edited) 2 hours ago, Dot said: This isn't a "script" that runs in OSBot. It's a standalone program that creates accounts. Explv has a working (free and open source) tutorial island script which you can set to automatically launch after each account is created as per the listed feature. Srry for wrong terminology xD and thanks for the info Edited November 23, 2018 by its zealous Link to comment Share on other sites More sharing options...
Eagle Scripts Posted November 24, 2018 Share Posted November 24, 2018 @Medusaa I had a quick skim through your code. Try looking into using try-with-resource code blocks. You're instantiating an HttpClient and never closing it. Instead of HttpClient httpclient = HttpClients.createDefault(); Try using the Closable option try (CloseableHttpClient httpclient = HttpClients.createDefault()) { // All the other code in here, rather than below your initial HttpClient instantiation } catch (IOException e) { e.printStackTrace(); } 1 Link to comment Share on other sites More sharing options...
Medusa Posted November 24, 2018 Author Share Posted November 24, 2018 23 minutes ago, Eagle Scripts said: @Medusaa I had a quick skim through your code. Try looking into using try-with-resource code blocks. You're instantiating an HttpClient and never closing it. Instead of HttpClient httpclient = HttpClients.createDefault(); Try using the Closable option try (CloseableHttpClient httpclient = HttpClients.createDefault()) { // All the other code in here, rather than below your initial HttpClient instantiation } catch (IOException e) { e.printStackTrace(); } Ah. Thanks for the suggestion. I'll look into changing it asap. I've already thought about re-writing the actual creation process, as the one right now is kinda scuffed, but I've never really had the time. 1 Link to comment Share on other sites More sharing options...
jordan gamble Posted November 26, 2018 Share Posted November 26, 2018 how do you get the +1 to not create those it on all of them but goes up in order Link to comment Share on other sites More sharing options...