Permanently Closed Marketplace Sales Thread

Status
Not open for further replies.
I want to offer sincere thanks to everybody who's asked great questions via PM and support and skype, and purchased through this deal. It's been great to help you all out.

If there's any more questions, please let me know!
 
Hi Seth,
I have been researching about programming for a while (I am not an engineer by profession). I learnt Python a bit and was hoping to grind my way through the rest of Python and C# in the next year 12-ish hours a day and be a pro at programming. However, recently I stumbled upon Ubot at the suggestion of a couple people.
I intend on buying the developer bot.. However I had the following query, it is kinda specific but i would appreciate it if I could get a response.
In massplanner (you may or may not have heard about it.. its a social media automation bot), every (for example), FB profile I have in there has it's own proxy, it's own cookies, it's own useragent and tasks are run in parallel multi threaded without footprint. I wish to do something similar on a platform they dont support. I wanted to know if the following is accomplish-able
via UBot. The platform I primarily wish to target has a lot to do with the IP and not with cookies necessarily. Would this be possible to do using Ubot:

- Run 100 threads in parallel with it's own designated proxy
- Each browser thread starts a random User Agent, random Browser, random referrer, clean cookies
- Opens a webpage
- Scrolls up and down on the webpage
- Stays on web page for, let's say 3 minutes (randomized 2.5 - 3.5 min)
- Proxies performs no action for 30 seconds (randomized 1-60 sec)
- Restarts a random User Agent, random browser.....etc etc Repeats loop but now on a new webpage

The webpages it would have to go to would be fed to it and a randomly selected webpage would be visited once a day..then from the list, that webpage would not be visited the same day..and it would work it's way through the rest of the webpages..till all are visited.. Then again net day would visit the same set of webpages again in random till are done.. All this via random User agent..browser...etc
The core is basically an IP randomly going to random webpages from a list each day.
Basically, a view bot.
Would this be doable via UBot ?

Also, what are the UserAgents supported and is there a way to add more on our own ?

Would appreciate a response.
Very keen on buying this soon if this can be coded using your botmaker.
Thanks. :)
 
Hi Seth,
I have been researching about programming for a while (I am not an engineer by profession). I learnt Python a bit and was hoping to grind my way through the rest of Python and C# in the next year 12-ish hours a day and be a pro at programming. However, recently I stumbled upon Ubot at the suggestion of a couple people.
I intend on buying the developer bot.. However I had the following query, it is kinda specific but i would appreciate it if I could get a response.
In massplanner (you may or may not have heard about it.. its a social media automation bot), every (for example), FB profile I have in there has it's own proxy, it's own cookies, it's own useragent and tasks are run in parallel multi threaded without footprint. I wish to do something similar on a platform they dont support. I wanted to know if the following is accomplish-able
via UBot. The platform I primarily wish to target has a lot to do with the IP and not with cookies necessarily. Would this be possible to do using Ubot:

- Run 100 threads in parallel with it's own designated proxy
- Each browser thread starts a random User Agent, random Browser, random referrer, clean cookies
- Opens a webpage
- Scrolls up and down on the webpage
- Stays on web page for, let's say 3 minutes (randomized 2.5 - 3.5 min)
- Proxies performs no action for 30 seconds (randomized 1-60 sec)
- Restarts a random User Agent, random browser.....etc etc Repeats loop but now on a new webpage

The webpages it would have to go to would be fed to it and a randomly selected webpage would be visited once a day..then from the list, that webpage would not be visited the same day..and it would work it's way through the rest of the webpages..till all are visited.. Then again net day would visit the same set of webpages again in random till are done.. All this via random User agent..browser...etc
The core is basically an IP randomly going to random webpages from a list each day.
Basically, a view bot.
Would this be doable via UBot ?

Also, what are the UserAgents supported and is there a way to add more on our own ?

Would appreciate a response.
Very keen on buying this soon if this can be coded using your botmaker.
Thanks. :)
I also want to know about this,
rock shovk- is this will help on youtube ret views too ?
 
I also want to know about this,
rock shovk- is this will help on youtube ret views too ?


I guess Seth will answer the question. As far as YT is concerned.. only once a bot is made and tested can we come to a conclusion about this.
 
Great questions. There are unlimited numbers of threads you can run inside UBot Studio Pro, but threading usage is specific to your machine, the tasks required, the memory usage of the webpages and any plugins you use, etc - if you want to run 100 threads, you can, or you might be better off running 33 across 3 machines to make sure it doesn't bog you down. Remember, you can compile with UBot Studio, so you can run an unlimited number of executables, or threads, in each. One bot could be on 100 machines if you wanted to run it single-threaded, even if you only have one license.

Each thread can have its own proxy, user agent, browser, etc. You'll want to check out the forum for making sure that you're using variables correctly so they don't get crossed from one thread to another, but there are some great tips and places to start.

The way you do this in UBot Studio is fairly simple -

Your list of proxies is loaded as a list, and a list of user agents is loaded as a list. You create this list. Your proxies can be from 111.111.111.111 to 999.999.999.999 if you want, and your user agent can be a school bus if you want, whatever you need. You create these in text/csv, or download them, etc. :) Once they're loaded in UBot Studio, you just point your bots at them using the set user agent command and change proxy command. Scrolling and randomized delays are simple commands, and if you watch the tutorials or read the first intro tutorial series you will know how to do this in a matter of minutes.

You'll want to start by using the threadspawn command, which essentially says anything inside this statement, run X number of threads (your choice).
If that's too basic for your purposes, take a look here: http://network.ubotstudio.com/forum/index.php?/topic/13995-free-multi-threaded-private-proxy-checker/?/topic/13995-free-multi-threaded-private-proxy-checker/ and here: http://network.ubotstudio.com/forum/index.php/topic/16713-sell-smart-thread-plugin-easy-threading/page-2).

Everything you're describing is possible inside UBot Studio. It's actually all fairly simple. Start with a non-threaded bot and once it does all of what you're describing, you'll be able to add in threading.



Seth
 
Great questions. There are unlimited numbers of threads you can run inside UBot Studio Pro, but threading usage is specific to your machine, the tasks required, the memory usage of the webpages and any plugins you use, etc - if you want to run 100 threads, you can, or you might be better off running 33 across 3 machines to make sure it doesn't bog you down. Remember, you can compile with UBot Studio, so you can run an unlimited number of executables, or threads, in each. One bot could be on 100 machines if you wanted to run it single-threaded, even if you only have one license.

Each thread can have its own proxy, user agent, browser, etc. You'll want to check out the forum for making sure that you're using variables correctly so they don't get crossed from one thread to another, but there are some great tips and places to start.

The way you do this in UBot Studio is fairly simple -

Your list of proxies is loaded as a list, and a list of user agents is loaded as a list. You create this list. Your proxies can be from 111.111.111.111 to 999.999.999.999 if you want, and your user agent can be a school bus if you want, whatever you need. You create these in text/csv, or download them, etc. :) Once they're loaded in UBot Studio, you just point your bots at them using the set user agent command and change proxy command. Scrolling and randomized delays are simple commands, and if you watch the tutorials or read the first intro tutorial series you will know how to do this in a matter of minutes.

You'll want to start by using the threadspawn command, which essentially says anything inside this statement, run X number of threads (your choice).
If that's too basic for your purposes, take a look here: http://network.ubotstudio.com/forum...95-free-multi-threaded-private-proxy-checker/ and here: http://network.ubotstudio.com/forum...ell-smart-thread-plugin-easy-threading/page-2).

Everything you're describing is possible inside UBot Studio. It's actually all fairly simple. Start with a non-threaded bot and once it does all of what you're describing, you'll be able to add in threading.



Seth


Thanks for the indepth response.

Questions:
- Is it possible to run the exe on a server directly in the above example ? I have heard that server based bots are faster and consume less resources.
- What kinda support is offered in the 3 month period.. like email support (i read something on those lines in your website) ? this system seems self explanatory but it would be great to have someone whom i could ask a question when i am in doubt.
- Can this integrate with things like FB / YT / Telegram APIs directly ? I hope to make Playlist creation bot, FB and Telegram bots amongst others using this. If not directly i guess i will just learn how to integrate and learn code along the way.

The software seems insanely good.. I saw all the YT vids and features page on your site and the wiki..
This seems to be a really great software man.. I see many people sell over hyped shit in the IM industry and i think this is a one of a kind product that seems to be actually under-hyped. Would be getting dev account soon.
 
Thanks for the indepth response.

Questions:
- Is it possible to run the exe on a server directly in the above example ? I have heard that server based bots are faster and consume less resources.
- What kinda support is offered in the 3 month period.. like email support (i read something on those lines in your website) ? this system seems self explanatory but it would be great to have someone whom i could ask a question when i am in doubt.
- Can this integrate with things like FB / YT / Telegram APIs directly ? I hope to make Playlist creation bot, FB and Telegram bots amongst others using this. If not directly i guess i will just learn how to integrate and learn code along the way.

- Yes, most Windows machines can run the .exe's. They do require the .Net framework.

- The support is ticket-based, and we are happy to answer most script-related questions. We ask that people have read/watched the tutorials, and that they specify the command or scenario that's giving them trouble. (The http://network.ubotstudio.com/forum/ and http://network.ubotstudio.com/forum/index.php/topic/19433-skype-group-250-members-join-here/ are also very valuable for getting answers from the experts.)

- There are lots of ways to integrate with APIs. The most obvious is via our Plugin API (you can have a plugin created using .Net that does pretty much anything a .Net product can do, wrapped around custom UBot Studio commands). Examples of this made by some users can be seen http://network.ubotstudio.com/forum/index.php/topic/16201-sell-facebook-api-plugin-extreme-api-options/ and http://network.ubotstudio.com/forum/index.php/topic/16316-sell-linkedin-api-ubot-source-code/ (there are more). You can also consider Python, which is available to you to use in the Dev version.

Thanks for the positive feedback!
 
- Yes, most Windows machines can run the .exe's. They do require the .Net framework.

- The support is ticket-based, and we are happy to answer most script-related questions. We ask that people have read/watched the tutorials, and that they specify the command or scenario that's giving them trouble. (The forum and skype group are also very valuable for getting answers from the experts.)

- There are lots of ways to integrate with APIs. The most obvious is via our Plugin API (you can have a plugin created using .Net that does pretty much anything a .Net product can do, wrapped around custom UBot Studio commands). Examples of this made by some users can be seen here for Facebook and here for LinkedIn (there are more). You can also consider Python, which is available to you to use in the Dev version.

Thanks for the positive feedback!


This seems deprecated: http://www.botguru.net/facebook-api-plugin/
That's the FB plugin example you gave.

I didn't understand the getting a plugin created bit.. So would any developer with .Net related experience be able to do this ?
Thanks.
 
Yes, just send them to our plugin creation page: http://wiki.ubotstudio.com/wiki/Guidelines_for_Plugin_Creation
 
Alright, here' s something really special.

Happy Christmas BlackHatWorld!

From now until Midnight, December 31st we are offering a discount of up to 31% off!
And in addition, $30 from every sale is going to charity! (More below)


https://ubotstudio.com/site/ubot-studio-standard-edition?coupon=ChildsPlay216B&utm_source=bhw&utm_medium=bhw&utm_campaign=CP

https://ubotstudio.com/site/ubot-studio-professional-edition?coupon=ChildsPlay216B&utm_source=bhw&utm_medium=bhw&utm_campaign=CP

https://ubotstudio.com/site/ubot-studio-developer-edition?coupon=ChildsPlay216B&utm_source=bhw&utm_medium=bhw&utm_campaign=CP



Upgrades:
https://ubotstudio.com/products/ubot-studio-professional-edition-upgrade?coupon=ChildsPlay216B&utm_source=bhw&utm_medium=bhw&utm_campaign=CP

https://ubotstudio.com/products/ubot-studio-developer-edition-upgrade?coupon=ChildsPlay216B&utm_source=bhw&utm_medium=bhw&utm_campaign=CP




k35uuxx

Have you heard of Child's Play? (http://www.childsplaycharity.org)​

Child's Play was set up by the guys over at Penny-Arcade.com. It's really simple: Donations buy video games and toys for sick children to play with during their hospital or shelter stay. It's gotten great results and, as someone who grew up playing games (and learning how to program because of it), I know the benefit firsthand.

Twice now we have done a promo where we donate a portion of December upgrades and our customers liked it, so I thought I would expand it.

All you have to do is buy through the promotional link. Any sales purchased through this link will be tallied and we will send $30 for every sale to Child's Play. New customers or customers using upgrades only - refunds and repurchases are not allowed.

https://i.imgur.com/eCeazpl.png

Discount ends Midnight, December 31.
 
It's buggy and crashes alot. Not happy about that. Plus you need to spend lots of money on plugins. I also don't recommend making bots for others with it. It may work fine on your computer but not theirs.

Other than that, I like it. I was able to make some useful bots for my own use.
 
It's buggy and crashes alot. Not happy about that. Plus you need to spend lots of money on plugins. I also don't recommend making bots for others with it. It may work fine on your computer but not theirs.

Other than that, I like it. I was able to make some useful bots for my own use.



Hi, thanks for your feedback. I believe you are a relatively new customer? So let me respond to each of your points in case you haven't seen this before:

1) Can you tell me what "bugs" you've reported by sending me the tracker information (http://tracker.ubotstudio.com or support.ubotstudio.com)? If you haven't reported them, then we can't work on them.
2) No one has to spend money on plugins. Plugins advance functionality - they are great, but they are in no way required. We had thousands of happy customers before there were plugins.
3) We have customers sharing tens of thousands of bots with people. If you are having an issue with a customer's inability to use a bot compiled in UBot Studio, please let us know by reproducing the issue and opening a tracker or ticket at support.


Seth
 
The price of Bitcoin keeps going up, so I thought I'd make a special offer - you can get an EVEN bigger discount on UBot Studio if you buy before January 1st with bitcoin!

Just open a support ticket at http://support.ubotstudio.com/ and let us know what Edition you'd like to buy and we'll send you a payment request with an ADDITIONAL 10% discount!
 
I would love to get more information, what is your Skype?

Just open a support ticket at http://support.ubotstudio.com/ and let us know what Edition you'd like to buy and we'll send you a payment request with an ADDITIONAL 10% discount! The Year-End promo has now ended, but if you're interested in using the BTC deal, we can still offer you 10% off.
 
Thanks to everyone who joined our Child's Play Charity Promo. Looks like we will be donating well over $1500!

Please let me know if you have any questions about UBot Studio!
 
Sorry if i sound ignorant...but i can use this to for example unfollo accounts on instagram o block accounts? thanks
 
Is there any discounts for the developer edition left ?
 
There are not currently any promotions available. Make sure to visit our homepage and join our list to be notified.
 
I've been geeking out on reading about uBot for 2 days!!
Only after I worked with MP (for automated social networking) I started to understand the unlimited potential of uBot!

P.S. I'm ready to buy, can you Please PM me your best promotion and I will evangelize the greatness of uBot from here forward!
 
Just Purchased uBot 5.0!!!
Can't wait to really dig into this amazing software later this week!!
 
Status
Not open for further replies.
Back
Top