How much Youtube View Script Worths ?

Youtube-Toys

Regular Member
Jr. VIP
Joined
Sep 28, 2012
Messages
233
Reaction score
173
Hello All,

Actually as we all seen that youtube is going very hard these days.

I wanna know for how much youtube views script can be sold ?

I have someone in my skype list who claims that he can make me a method if i pay him well.

So wanna know how much it should be ? How much people usually pays for the working script ?

It feels bad to me that i posted such a question but was in confusion. So wanted to get some help.

Thanks.
 
I would pay around $100 for a working script but if the source code is also included. It is pointless without the source code as it may stop working anytime.
 
It's such a gamble that it's hard to tell.

It could last another 2 months before being patched or 2 days, you just don't know.
 
So he doesn't even have a method, and claims he can "make" a method?


Ignore him, he's probably a scammer.


+1 More than likely a scammer.

Upload a video of a banana, or something else of no value (so he doesn't think your just trying to get free views.) Ask him to send you 20,000 views to prove he is legit. If he owns the script it will cost him next to nothing to send the views.
 
Pretty much. Like reoman said . If he can't deliver thousands of views to a worthless video .. scam :D
 
I'm with everyone who said it's a scam. One thing people need to start asking:

"Why would this person SEEK ME OUT to ask for bunch of money for a method that should be making him 5x what he wants me to pay?"
 
I'm with everyone who said it's a scam. One thing people need to start asking:

"Why would this person SEEK ME OUT to ask for bunch of money for a method that should be making him 5x what he wants me to pay?"

exactly.

1213241
 
Thanks everybody for the help..seems he is scammer :P
he wants 3k first then he will make method n send views, says i will not waste time if u are not serious in buying lol..

He wanted to sell for 12k lol.

Thanks again
 
Thanks everybody for the help..seems he is scammer :P
he wants 3k first then he will make method n send views, says i will not waste time if u are not serious in buying lol..

He wanted to sell for 12k lol.

Thanks again
Yea he probably tried to scam you but keep in mind that youtube view scripts are now worth that much and the frequent updates of view algo make it almost impossible to code a proper script.
 
Don't listen to him. It is 101% scam. Scripts that work costs thousands of dollars and then you need a dedicated coder to keep up with all the updates youtube make.
 
What exactly do you need? a bot/script that watches your YouTube videos for 30 seconds to cause the Views counter to go up?

This is a 10 minute job to write using Browser Automation software like Selenium (free/open source). I use it for a similar purpose where it emulates Firefox / Chrome / IE / iPhone and uses proxies and VPN's to simulate masses of visitors.
 
Just tried this out of curiosity and it appears to work, you will need the Python language installed and follow the Selenium documentation.


  • Randomly switches proxies from the list you give it
  • Goes direct to a video watch page
  • Plays the video for 30-50 seconds
  • Sleeps for 10-100 seconds before repeating

Code:
import randomfrom time import sleep
from random import randint
from selenium import webdriver
from selenium.webdriver.common.proxy import *


# Put your list of proxies in here
proxies = [
	'213.213.213.213:8080',
	'123.123.123.123:8080'
]


# This will run until you CTRL+C it
while True:
	randomProxy = random.choice(proxies)
	proxy = Proxy({
	    'proxyType': ProxyType.MANUAL,
	    'httpProxy': randomProxy,
	    'ftpProxy': randomProxy,
	    'sslProxy': randomProxy,
	    'noProxy': ''
	})
	browser = webdriver.Firefox(proxy=proxy)
	browser.get('http://www.youtube.com/watch?v=XXXXXXXXXXXX')
	sleep(randint(30,50))
	browser.quit()
	sleep(randint(10,100))

With a little further work you could embellish this script to navigate to your site and watch an embed, or do a search in YouTube for your video and then click it from the results listing.
 
Thanks everybody for the help..seems he is scammer :P
he wants 3k first then he will make method n send views, says i will not waste time if u are not serious in buying lol..

He wanted to sell for 12k lol.

Thanks again

12k USD ? :O

dafuq.. I won't pay that much without proof and source code
 
@ikstob You would need tons of good working proxies to make this work and most of the public ones will not be able to play youtube videos.
 
Drop the guy from your Skype list - he is a scammer.
Anybody with a decent working script would be milking it right now, not trying to sell it to randoms on skype.
 
Thanks Guys.

Confusion Solved !!.. Deleted from the list..

Thats why i love Bhw :)
 
Back
Top