elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Arreglado, de nuevo, el registro del warzone (wargame) de EHN


  Mostrar Temas
Páginas: [1]
1  Programación / Programación General / Precio Creacion de bot en: 20 Septiembre 2019, 01:18 am
Hola buenas, quisiera saber cúal de vosotros me daría sus servicios en la creacion de un bot , ese programador por supuesto se hablaria de su precio por el trabajo
2  Programación / .NET (C#, VB.NET, ASP) / Problema Con Autoclick. en: 7 Enero 2015, 22:16 pm
Hola buenas, me han dicho que usando la Opcion ToString en autoclicks de .NET se obtiene más eficacia yo querria saber como hacer para que no me de errores  aqui estaria el codigo :

Código
  1. Public Class Form1
  2. Private Declare Sub mouse_event Lib "user32" (ByVal dwflags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cbuttons As Long, ByVal dwExtraInfo As Long)
  3. Private Const mouseclickup = 4
  4. Private Const mouseclickdown = 2
  5. Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
  6.  
  7.  
  8.  
  9.  
  10. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  11. Windows.Forms.Cursor.Position = New Point(Windows.Forms.Cursor.Position.X, Windows.Forms.Cursor.Position.Y)
  12. Timer1.Interval = NumericUpDown1.Value
  13. Label1.Text = Windows.Forms.Cursor.Position.X
  14. Label2.Text = Windows.Forms.Cursor.Position.Y
  15.  
  16. Windows.Forms.Cursor.Position = New Point(TextBox1.Text, TextBox2.Text)
  17.  
  18. mouse_event(mouseclickdown, 0, 0, 0, 0)
  19. mouse_event(mouseclickup, 0, 0, 0, 0)
  20.  
  21. Windows.Forms.Cursor.Position = New Point(Label1.Text, Label2.Text)
  22. End Sub
  23.  
  24. Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
  25. Dim hotkey As Boolean
  26. hotkey = GetAsyncKeyState(Keys.F1)
  27. If hotkey = True Then timer1.start()
  28. Dim hotkey1 As Boolean
  29. hotkey1 = GetAsyncKeyState(Keys.F2)
  30. If hotkey1 = True Then Timer1.Stop()
  31. End Sub
  32.  
  33.  
  34. Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
  35. Dim Posicion As Boolean
  36. Posicion = GetAsyncKeyState(Keys.F9)
  37. If Posicion = True Then
  38. TextBox1.Text = MousePosition.X : TextBox2.Text = MousePosition.Y
  39. End If
  40. If Posicion = False Then
  41. End if
  42. End Sub
  43.  
  44. End Sub
  45. End Class
  46.  

Mod: tema modificado, Publica codigo usando Etiquetas GeSHi
3  Programación / .NET (C#, VB.NET, ASP) / Milisegundos en: 17 Julio 2014, 13:36 pm
Como Ponerle a un NumericUpDown Para un Autoclicker? En Microsoft Visual Studio 2013
4  Programación / .NET (C#, VB.NET, ASP) / Numeros Binarios En Programación VB 2008 en: 5 Mayo 2014, 15:54 pm
Como Puedo Ponerle Numeros Binarios A Un Programa De Visual Basic 2008
5  Programación / Programación General / Numeros binarios En Vb.Net en: 5 Mayo 2014, 15:34 pm
Como Puedo Ponerle Numeros Binarios A Un Programa De Visual Basic 2008
6  Programación / Programación General / Autoclicker En NanoSegundos en: 8 Febrero 2014, 14:21 pm
Hola si quisiera saber como hacer un autoclick que de clicks en Nanosegundos

Public Class Form1
    Private Declare Sub mouse_event Lib "user32" (ByVal dwflags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cbuttons As Long, ByVal dwExtraInfo As Long)
    Private Const MOUSEEVENTF_MOVE = 1
    Private Const MOUSEEVENTF_LEFTDOWN = 2
    Private Const MOUSEEVENTF_LEFTUP = 4
    Private Const MOUSEEVENTF_RIGHTDOWN = 8
    Private Const NULLunString = 3
    Private Const MouseClickUP = 1
    Private Const MouseClickDown = 1
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer

    Dim campo1
    Dim campo2
    Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
        Dim hotkey2 As Boolean
        hotkey2 = GetAsyncKeyState(Keys.F9)
        If hotkey2 = True Then
            TextBox1.Text = campo1
            TextBox2.Text = campo2
            campo1 = Cursor.Position.X
            campo2 = Cursor.Position.Y
        End If
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick


    End Sub

    Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
        Windows.Forms.Cursor.Position = New Point(TextBox1.Text, TextBox2.Text)
        mouse_event(mouseclickdown, 0, 0, 0, 0)
        mouse_event(mouseclickup, 0, 0, 0, 0)
    End Sub

    Private Sub Timer4_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer4.Tick
        Dim hotkey As Boolean
        hotkey = GetAsyncKeyState(Keys.F1)
        If hotkey = True Then Timer3.Start()
        Dim hotkey1 As Boolean
        hotkey1 = GetAsyncKeyState(Keys.F2)
        If hotkey1 = True Then Timer3.Stop()
    End Sub

End Class
Páginas: [1]
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines