Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock > WarRock Guides, Tutorials & Modifications
You last visited: Today at 14:27

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[TuT]wie baue ich ein Spammer + Source

Discussion on [TuT]wie baue ich ein Spammer + Source within the WarRock Guides, Tutorials & Modifications forum part of the WarRock category.

Reply
 
Old   #1
 
SonyX™'s Avatar
 
elite*gold: 79
Join Date: Sep 2010
Posts: 412
Received Thanks: 436
Cool [TuT]wie baue ich ein Spammer + Source

Desing:
Code:
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        Try
            If disposing AndAlso components IsNot Nothing Then
                components.Dispose()
            End If
        Finally
            MyBase.Dispose(disposing)
        End Try
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container
        Me.Label1 = New System.Windows.Forms.Label
        Me.TextBox1 = New System.Windows.Forms.TextBox
        Me.Label2 = New System.Windows.Forms.Label
        Me.NumericUpDown1 = New System.Windows.Forms.NumericUpDown
        Me.Button1 = New System.Windows.Forms.Button
        Me.Button2 = New System.Windows.Forms.Button
        Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
        CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.SuspendLayout()
        '
        'Label1
        '
        Me.Label1.AutoSize = True
        Me.Label1.Location = New System.Drawing.Point(13, 13)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(53, 13)
        Me.Label1.TabIndex = 0
        Me.Label1.Text = "Message:"
        '
        'TextBox1
        '
        Me.TextBox1.Location = New System.Drawing.Point(16, 32)
        Me.TextBox1.Multiline = True
        Me.TextBox1.Name = "TextBox1"
        Me.TextBox1.Size = New System.Drawing.Size(254, 162)
        Me.TextBox1.TabIndex = 1
        '
        'Label2
        '
        Me.Label2.AutoSize = True
        Me.Label2.Location = New System.Drawing.Point(13, 203)
        Me.Label2.Name = "Label2"
        Me.Label2.Size = New System.Drawing.Size(41, 13)
        Me.Label2.TabIndex = 2
        Me.Label2.Text = "Speed:"
        '
        'NumericUpDown1
        '
        Me.NumericUpDown1.Location = New System.Drawing.Point(64, 201)
        Me.NumericUpDown1.Name = "NumericUpDown1"
        Me.NumericUpDown1.Size = New System.Drawing.Size(120, 20)
        Me.NumericUpDown1.TabIndex = 3
        '
        'Button1
        '
        Me.Button1.Location = New System.Drawing.Point(64, 231)
        Me.Button1.Name = "Button1"
        Me.Button1.Size = New System.Drawing.Size(75, 23)
        Me.Button1.TabIndex = 4
        Me.Button1.Text = "Start"
        Me.Button1.UseVisualStyleBackColor = True
        '
        'Button2
        '
        Me.Button2.Location = New System.Drawing.Point(145, 231)
        Me.Button2.Name = "Button2"
        Me.Button2.Size = New System.Drawing.Size(75, 23)
        Me.Button2.TabIndex = 5
        Me.Button2.Text = "Stop"
        Me.Button2.UseVisualStyleBackColor = True
        '
        'Timer1
        '
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(292, 266)
        Me.Controls.Add(Me.Button2)
        Me.Controls.Add(Me.Button1)
        Me.Controls.Add(Me.NumericUpDown1)
        Me.Controls.Add(Me.Label2)
        Me.Controls.Add(Me.TextBox1)
        Me.Controls.Add(Me.Label1)
        Me.MaximizeBox = False
        Me.Name = "Form1"
        Me.Text = "Spammer"
        Me.TopMost = True
        CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
    Friend WithEvents Label2 As System.Windows.Forms.Label
    Friend WithEvents NumericUpDown1 As System.Windows.Forms.NumericUpDown
    Friend WithEvents Button1 As System.Windows.Forms.Button
    Friend WithEvents Button2 As System.Windows.Forms.Button
    Friend WithEvents Timer1 As System.Windows.Forms.Timer

End Class
Code:
Public Class Form1

    Private Sub NumericUpDown1_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NumericUpDown1.ValueChanged
        NumericUpDown1.Maximum = 9999999999999999  ' Sets the limit
        Timer1.Interval = NumericUpDown1.Value  ' Sets the timer interval as the value on the NumericUpDown
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Timer1.Enabled = True  ' Starts the timer when button is clicked
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Timer1.Enabled = False  ' Stops the timer when the button is clicked
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        SendKeys.Send(TextBox1.Text & "{enter}")  ' Gets the text found on Textbox1 and spams it followed by a "{enter}"
    End Sub
End Class
hier noch ein video wir ihr alles machen müst



Virustotal: --> 0|42



Download:
SonyX™ is offline  
Thanks
1 User
Old 12/25/2010, 22:36   #2
 
elite*gold: 0
Join Date: Jul 2010
Posts: 783
Received Thanks: 666
geiles tut ^^ teste gleich ob es funktioniert


edit: funkt nicht habe tut 2x gemacht siehe spiler -.-




.Sasuke™ is offline  
Old 12/25/2010, 22:58   #3
 
SonyX™'s Avatar
 
elite*gold: 79
Join Date: Sep 2010
Posts: 412
Received Thanks: 436
mach das das wird worken
SonyX™ is offline  
Old 12/25/2010, 23:13   #4
 
elite*gold: 0
Join Date: Jul 2010
Posts: 783
Received Thanks: 666
es geht doch ^^ selbst problem gelöst ^^
.Sasuke™ is offline  
Old 12/25/2010, 23:17   #5
 
SonyX™'s Avatar
 
elite*gold: 79
Join Date: Sep 2010
Posts: 412
Received Thanks: 436
welches bild ?
SonyX™ is offline  
Old 12/25/2010, 23:25   #6
 
elite*gold: 0
Join Date: Jul 2010
Posts: 783
Received Thanks: 666
ach nix da oben is url xd
.Sasuke™ is offline  
Old 12/25/2010, 23:29   #7
 
elite*gold: 58
Join Date: Dec 2010
Posts: 1,277
Received Thanks: 538
Lass das Spammen pls -.-
Mann kan in der Lobby nix mehr machen, da nur herumgespammt wird.
oBaNaNeNFrEaKo is offline  
Old 12/25/2010, 23:38   #8
 
elite*gold: 0
Join Date: Jul 2010
Posts: 783
Received Thanks: 666
Quote:
Originally Posted by oCreepeRo View Post
Lass das Spammen pls -.-
Mann kan in der Lobby nix mehr machen, da nur herumgespammt wird.

dafür kann ich auch nix also is mir egal ^^ den spammer benutze ich jetzt
.Sasuke™ is offline  
Old 12/26/2010, 10:27   #9
 
elite*gold: 0
Join Date: Dec 2010
Posts: 2
Received Thanks: 0
Wie Geht der`?? helft mir bitte
Warrockkk is offline  
Old 12/26/2010, 10:46   #10
 
elite*gold: 0
Join Date: Mar 2009
Posts: 3,963
Received Thanks: 1,584
Das ist KEIN Tut das ist C&P wenn du das in der Coding section Postet wird derThread geclosed ....
Algaten™ is offline  
Old 12/26/2010, 10:50   #11
 
SonyX™'s Avatar
 
elite*gold: 79
Join Date: Sep 2010
Posts: 412
Received Thanks: 436
das ist aber eine hilfe wie ein spammer aufgebaut ist für welche die es wissen wollen oder die mehr über VB lernen wollen
SonyX™ is offline  
Old 12/26/2010, 10:54   #12
 
elite*gold: 0
Join Date: Jun 2010
Posts: 16
Received Thanks: 29
@Algaten
aber trotzdem hilfts
gamaguga is offline  
Old 12/26/2010, 11:12   #13
 
elite*gold: 0
Join Date: Mar 2009
Posts: 3,963
Received Thanks: 1,584
Quote:
Originally Posted by SonyX™ View Post
das ist aber eine hilfe wie ein spammer aufgebaut ist für welche die es wissen wollen oder die mehr über VB lernen wollen
Schonmal getestet ob der Spammer in Wr geht?
Also meine die Ich immoment in Vb mache Funzen in wr nicht da Wr die nicht zulässt..
Deswegen liegen bei mir immoment sehr viele Vb Projekte flach
Algaten™ is offline  
Old 12/26/2010, 12:21   #14
 
c0c4c0l4's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 30
Received Thanks: 16
Nimm es nicht persönlich, aber es gibt bessere Tuts auf Youtube.
c0c4c0l4 is offline  
Old 12/26/2010, 12:42   #15
 
SonyX™'s Avatar
 
elite*gold: 79
Join Date: Sep 2010
Posts: 412
Received Thanks: 436
es ist ein youtube video tut mit drin
unten als link
SonyX™ is offline  
Reply


Similar Threads Similar Threads
[TuT]Wie baue ich einen Teleporter?!
05/15/2011 - WoW Private Server - 17 Replies
Hallo E*Pvpers, ich will heute euch zeigen wie man einen Teleporter baut :D ok wollen wir mal anfangen: Schritt1: Ich erstellt euch einen Npc(Gossip) auf : Item/Mob/NPC Creators | WoW-V.com leider müsst ihr euch Registrieren aber das macht ja nichts. Schritt2: Ich batcht die SQL datei die ihr bei WOW-V gedownloadet habt in eure Datenbank.
[Frage]wie baue ich server side
08/20/2010 - Metin2 Private Server - 1 Replies
wie baue ich serverside mehrer CH ein? habe bis jetzt leider nur einen ch udn werde demnächst auf root umsteigen und wollte deswegen schonmal 4 ch´s einbauen finde aber einfach kein HowTo dazu :( kann mir da jemand weiter helfen?
baue ks bot
06/29/2010 - Last Chaos - 14 Replies
halo alle miteinander:) da mir heute w ist hab ich mia mal was ueberlegt+killer hielft mia ich bau mal 1. ks plus bot (alle 0.4) sec ode so wars doch die waffe plusen 2. wafen in ks mach bot der bot sol keine meisterleistung sein d.h. man mus den char vorher genau an den richtigne ort stelen etc etc naja ich machs mehr so amateurhaft doch cih sag dan hauptsache es klapt evtl kont man die 2 sachen auch noch kombineren ;) naja mal schauen wer hette den interesse?:bandit:
wie baue ich quest ein bzw wie uberzeze ich die??
12/03/2009 - Metin2 Private Server - 0 Replies
ales ist im titel
wie baue ich esc taste ein
05/30/2009 - AutoIt - 3 Replies
While (1) Wend Func Start () While (1) Opt("WinWaitDelay",100) Opt("WinTitleMatchMode",4) Opt("WinDetectHiddenText",1) Opt("MouseCoordMode",0)



All times are GMT +1. The time now is 14:27.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.