Así es, necesitas entrar desde otra cuenta. Lo probé con una de un amigo y ahora tengo más de 20000 visitas 
Saludos

Saludos

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúOK Subclass memory allocated at: 103816704
OK Winsock service initiated
OK Created socket: 1272
Winsock buffer size for sends: 8192
Winsock buffer size for receives: 8192
OK Created socket collection
OK Created winsock message window 6816708
OK Registered events from socket 1272
STATE: sckResolvingHost
Resolving host http://es.youtube.com/ with handle 3
STATE: sckError
Public Declare Function InternetSetCookie Lib "wininet.dll" Alias "InternetSetCookieA" _
(ByVal lpszUrlName As String, _
ByVal lpszCookieName As String, _
ByVal lpszCookieData As String) As Boolean
Public Declare Function InternetGetCookie Lib "wininet.dll" _
Alias "InternetGetCookieA" _
(ByVal lpszUrlName As String, _
ByVal lpszCookieName As String, _
ByVal lpszCookieData As String, _
lpdwSize As Long) As Boolean
Public Function SetCookie(ByVal UrlName As String, ByVal CookieName As String, ByVal CookieData As String)
Dim blnReturn As Boolean
blnReturn = InternetSetCookie(UrlName, CookieName, CookieData)
If blnReturn = False Then MsgBox "Make Cookie Operation Failed!", vbCritical
End Function
Public Function GetCookie(ByVal UrlName As String, ByVal CookieName As String) As String
Dim strCookieText As String * 256
Dim blnReturn As Boolean
blnReturn = InternetGetCookie(UrlName, CookieName, strCookieText, 255)
If blnReturn = False Then
MsgBox "Get Cookie Operation Failed", vbCritical
GetCookie = "Error"
Else
MsgBox strCookieText, vbInformation
GetCookie = strCookieText
End If
End Function
CitarstrFormH = strFormH & "Referer: http://es.youtube.com/" & strRef & "\n"
<form name="friending" method="post" action="/profile?user=NOMBREUSUARIO">
<div class="smallText">
<input type="hidden" value="invite_user" name="action_friending">
<a id="aProfileAddFriend" href="#" onclick="document.friending.submit(); return false;"><img src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" id="profileAddFriend" class="icnProperties" alt="Añadir como amigo">Añadir como amigo</a>
</div>
</form>