Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    How to make a spammer with basic antimute


    Golden.
     Share

    Recommended Posts

    Create a new Project and call it "Basic Spammer" or whatever you want

     

    Add

    2 buttons, 1 timers, 2 textbox

    .

     

    Name the two Buttons

    - Start

    - Stop

     

    Double Click on "Start"

    Type this in

    Timer1.Enabled = True

     

    Double Click on "Stop"

    Timer1.Enabled = False

     

    Double Click on timer1

    Sendkeys.Send (Textbox1.text)
    Sendkeys.Send ("{Enter}")
    Sendkeys.Send (Textbox1.text & "!")
    Sendkeys.Send ("{Enter}")

     

    Set timer1's Settings to

    Enabled= False

    Interval= 100

     

    Double click textbox2

    Timer1.Interval = TextBox2.Text

     

    And your done!

     

    For any n00bs who cba to code the whole thing, just delete all the origional coding, add the 2 buttons, 2 textboxes, timer and paste this in:

    Public Class Form1
    
       Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
           Timer1.Enabled = True
       End Sub
    
       Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
           Timer1.Enabled = False
       End Sub
    
       Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
           SendKeys.Send(TextBox1.Text)
           SendKeys.Send("{Enter}")
           SendKeys.Send(TextBox1.Text & "!")
           SendKeys.Send("{Enter}")
       End Sub
    
       Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click
    
       End Sub
    
       Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
    
       End Sub
    
       Private Sub TextBox2_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged
           Timer1.Interval = TextBox2.Text
       End Sub
    
       Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click
    
       End Sub
    
       Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
       End Sub
    End Class

    Credits:

    Me

    Shadd!x ( For help with coding antimute )

    Edited by Golden.
    Link to comment
    Share on other sites

    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...