Simple Code and Concept or Methode How To Make Bot Youtube Viewer

pionerr

Newbie
Joined
Sep 2, 2016
Messages
6
Reaction score
1
hahahaha meet again with i am scammer or lamer or script kiddies
now i will share simple code and concept or methode
how to make bot youtube viewer with vb6.0
for the master got from this thread okay...hahahaha
i am very hate master hahahahaha

oke now let's start

1. you must know how to get viewer youtube. yeaahh with playing video using application browser
for aplication browser very much at all firefox,chrome etc. so you selected one your favorite or power full
application browser
2. if you already selected application browser. now how to open that browser with vb6.0 or other program and automatic
go to url youtube video victim and playing video. for simple method you can using Declare API Windows shellexecute.
if your question how to get declare API watching my video tutorial oke, hahahaha
Code declare API ShellExecute for open application browser and auto open url video victim

'-----------------------------------------------------------------------------------------------
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Sub Command1_Click()
ShellExecute 0, "open", "C:\Program Files\Mozilla\Firefox.exe", "youtube. com/watch/?v=blabala", vbNullString, 1
End Sub
'-----------------------------------------------------------------------------------------------

3. viewer youtube finish. now how to close or stop that viewer?. for simple method or concept you can using command cmd
"taskkill /f /im Firefox.exe".
4. now how to execute that command with vb6.0 or other program? simple method or concept you can save that command on bat file then
execute with vb6.0.
Code Close or Stop Viewer with bat file

'-----------------------------------------------------------------------------------------------
Private Sub Command2_Click()
Open App.Path & "\close.bat" For Output As #1
Print #1, "taskkill /f /im Firefox.exe""
Print #1, "CLS"
Print #1, "Exit"
Close #1

Shell App.Path & "\close.bat", vbHide
End Sub

'-----------------------------------------------------------------------------------------------

yeaaahhh. this method i am using with my bot. and this method is first my methode for make youtube viewer power full and minimize
banned risk. so explore your brain

Thank's for your judge to me.
this video tutorial
youtube. com/watch?v=bWtNneJku34
erase spaces on all url
 
How to upload vids fully automatically via VB? I coded with autoit but not succeed.
 
Back
Top