Register for your free account! | Forgot your password?

You last visited: Today at 01:39

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

Advertisement



[TuT]WarRock Spamer erstellen

Discussion on [TuT]WarRock Spamer erstellen within the WarRock Guides, Tutorials & Modifications forum part of the WarRock category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2010
Posts: 826
Received Thanks: 499
[TuT]WarRock Spamer erstellen mit C++ [03.06.2011]

HI Leute da 5/6 Member mich angeschrieben habe und gefragt habe wie man einen Spamer selber erstellt wollte ich mal schnell eine Tutorial machen wo euch erklärt wird wie man schnell und einfach einen Spamer macht für WarRock ich hoffe es Hilft euch und ihr habt Spaß damit



Was ihr braucht?



1.
öffnet eine neue Windows-Forms-Anwendung.


2.
ihr benötigt :
3 Textboxen
4 Timer
2 Buttons


3. Button1 wird der Startbutton sein.Dieser soll den Timer1 Starten.
also Der code kommt zwischen die Klammern :

PHP Code:
      timer1->Start (); 
4. Button2 wird der Stopbutton sein. Da es 3 Timer gibt, sieht der code wie folgt aus :

PHP Code:
 timer1->Stop ();
timer2->Stop ();
timer3->Stop (); 
5. nun zum Timer1 :

PHP Code:
SendKeys::Send (textBox1->Text);
            
SendKeys::Send ("{Enter}");
            
timer1->Stop ();
            
timer2->Start (); 
6. nun zum Timer2 :

PHP Code:
SendKeys::Send(textBox2->Text);
                
SendKeys::Send("{Enter}");
                
timer3->Start();
                
timer2->Stop(); 
7. Timer3 :

PHP Code:
SendKeys::Send(textBox3->Text);
                
SendKeys::Send("{Enter}");
                
timer4->Start();
                
timer3->Stop(); 

8. Timer4 :

PHP Code:
SendKeys::Send("___VISIT Weeched.eu to get Newest HACKS____");
                
SendKeys::Send("{Enter}");
                
timer1->Start();
                
timer4->Stop(); 
Vollständiger Code mit Parameter

PHP Code:
#pragma once


namespace SpamBot {

    
using namespace System;
    
using namespace System::ComponentModel;
    
using namespace System::Collections;
    
using namespace System::Windows::Forms;
    
using namespace System::Data;
    
using namespace System::Drawing;

    
/// <summary>
    /// Zusammenfassung für Form1
    ///
    /// Warnung: Wenn Sie den Namen dieser Klasse ändern, müssen Sie auch
    ///          die Ressourcendateiname-Eigenschaft für das Tool zur Kompilierung verwalteter Ressourcen ändern,
    ///          das allen RESX-Dateien zugewiesen ist, von denen diese Klasse abhängt.
    ///          Anderenfalls können die Designer nicht korrekt mit den lokalisierten Ressourcen
    ///          arbeiten, die diesem Formular zugewiesen sind.
    /// </summary>
    
public ref class Form1 : public System::Windows::Forms::Form
    
{
    public:
        
Form1(void)
        {
            
InitializeComponent();
            
//
            //TODO: Konstruktorcode hier hinzufügen.
            //
        
}

    protected:
        
/// <summary>
        /// Verwendete Ressourcen bereinigen.
        /// </summary>
        
~Form1()
        {
            if (
components)
            {
                
delete components;
            }
        }
    private: 
System::Windows::Forms::Button^  button1;
    protected: 
    private: 
System::Windows::Forms::Button^  button2;
    private: 
System::Windows::Forms::TextBox^  textBox1;
    private: 
System::Windows::Forms::TextBox^  textBox2;
    private: 
System::Windows::Forms::TextBox^  textBox3;
    private: 
System::Windows::Forms::Timer^  timer1;
    private: 
System::Windows::Forms::Timer^  timer2;
    private: 
System::Windows::Forms::Timer^  timer3;
    private: 
System::Windows::Forms::Timer^  timer4;
    private: 
System::Windows::Forms::Label^  label1;
    private: 
System::Windows::Forms::Label^  label2;
    private: 
System::Windows::Forms::Label^  label3;





    private: 
System::ComponentModel::IContainer^  components;

    private:
        
/// <summary>
        /// Erforderliche Designervariable.
        /// </summary>


#pragma region Windows Form Designer generated code
        /// <summary>
        /// Erforderliche Methode für die Designerunterstützung.
        /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
        /// </summary>
        
void InitializeComponent(void)
        {
            
this->components = (gcnew System::ComponentModel::Container());
            
System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(Form1::typeid));
            
this->button1 = (gcnew System::Windows::Forms::Button());
            
this->button2 = (gcnew System::Windows::Forms::Button());
            
this->textBox1 = (gcnew System::Windows::Forms::TextBox());
            
this->textBox2 = (gcnew System::Windows::Forms::TextBox());
            
this->textBox3 = (gcnew System::Windows::Forms::TextBox());
            
this->timer1 = (gcnew System::Windows::Forms::Timer(this->components));
            
this->timer2 = (gcnew System::Windows::Forms::Timer(this->components));
            
this->timer3 = (gcnew System::Windows::Forms::Timer(this->components));
            
this->timer4 = (gcnew System::Windows::Forms::Timer(this->components));
            
this->label1 = (gcnew System::Windows::Forms::Label());
            
this->label2 = (gcnew System::Windows::Forms::Label());
            
this->label3 = (gcnew System::Windows::Forms::Label());
            
this->SuspendLayout();
            
// 
            // button1
            // 
            
this->button1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif"9.75FSystem::Drawing::FontStyle::BoldSystem::Drawing::GraphicsUnit::Point
                
static_cast<System::Byte>(0)));
            
this->button1->Location System::Drawing::Point(4990);
            
this->button1->Name L"button1";
            
this->button1->Size System::Drawing::Size(21423);
            
this->button1->TabIndex 0;
            
this->button1->Text L"Start";
            
this->button1->UseVisualStyleBackColor true;
            
this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
            
// 
            // button2
            // 
            
this->button2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif"9.75FSystem::Drawing::FontStyle::BoldSystem::Drawing::GraphicsUnit::Point
                
static_cast<System::Byte>(0)));
            
this->button2->Location System::Drawing::Point(26990);
            
this->button2->Name L"button2";
            
this->button2->Size System::Drawing::Size(20523);
            
this->button2->TabIndex 1;
            
this->button2->Text L"Stop";
            
this->button2->UseVisualStyleBackColor true;
            
this->button2->Click += gcnew System::EventHandler(this, &Form1::button2_Click);
            
// 
            // textBox1
            // 
            
this->textBox1->BackColor System::Drawing::Color::Silver;
            
this->textBox1->Location System::Drawing::Point(4912);
            
this->textBox1->Name L"textBox1";
            
this->textBox1->Size System::Drawing::Size(42520);
            
this->textBox1->TabIndex 2;
            
// 
            // textBox2
            // 
            
this->textBox2->BackColor System::Drawing::Color::Silver;
            
this->textBox2->Location System::Drawing::Point(4938);
            
this->textBox2->Name L"textBox2";
            
this->textBox2->Size System::Drawing::Size(42520);
            
this->textBox2->TabIndex 3;
            
// 
            // textBox3
            // 
            
this->textBox3->BackColor System::Drawing::Color::Silver;
            
this->textBox3->Location System::Drawing::Point(4964);
            
this->textBox3->Name L"textBox3";
            
this->textBox3->Size System::Drawing::Size(42520);
            
this->textBox3->TabIndex 4;
            
// 
            // timer1
            // 
            
this->timer1->Interval 1100;
            
this->timer1->Tick += gcnew System::EventHandler(this, &Form1::timer1_Tick);
            
// 
            // timer2
            // 
            
this->timer2->Interval 1100;
            
this->timer2->Tick += gcnew System::EventHandler(this, &Form1::timer2_Tick);
            
// 
            // timer3
            // 
            
this->timer3->Interval 1100;
            
this->timer3->Tick += gcnew System::EventHandler(this, &Form1::timer3_Tick);
            
// 
            // timer4
            // 
            
this->timer4->Interval 1100;
            
this->timer4->Tick += gcnew System::EventHandler(this, &Form1::timer4_Tick);
            
// 
            // label1
            // 
            
this->label1->AutoSize true;
            
this->label1->Location System::Drawing::Point(015);
            
this->label1->Name L"label1";
            
this->label1->Size System::Drawing::Size(4313);
            
this->label1->TabIndex 5;
            
this->label1->Text L"Text 1 :";
            
// 
            // label2
            // 
            
this->label2->AutoSize true;
            
this->label2->Location System::Drawing::Point(041);
            
this->label2->Name L"label2";
            
this->label2->Size System::Drawing::Size(4313);
            
this->label2->TabIndex 6;
            
this->label2->Text L"Text 2 :";
            
// 
            // label3
            // 
            
this->label3->AutoSize true;
            
this->label3->Location System::Drawing::Point(067);
            
this->label3->Name L"label3";
            
this->label3->Size System::Drawing::Size(4313);
            
this->label3->TabIndex 7;
            
this->label3->Text L"Text 3 :";
            
// 
            // Form1
            // 
            
this->AutoScaleDimensions System::Drawing::SizeF(613);
            
this->AutoScaleMode System::Windows::Forms::AutoScaleMode::Font;
            
this->BackColor System::Drawing::Color::Gray;
            
this->ClientSize System::Drawing::Size(486118);
            
this->Controls->Add(this->label3);
            
this->Controls->Add(this->label2);
            
this->Controls->Add(this->label1);
            
this->Controls->Add(this->textBox3);
            
this->Controls->Add(this->textBox2);
            
this->Controls->Add(this->textBox1);
            
this->Controls->Add(this->button2);
            
this->Controls->Add(this->button1);
            
this->FormBorderStyle System::Windows::Forms::FormBorderStyle::FixedSingle;
            
this->Icon = (cli::safe_cast<System::Drawing::Icon^  >(resources->GetObject(L"$this.Icon")));
            
this->MaximizeBox false;
            
this->Name L"Form1";
            
this->Text L"Spam-Bot by FreeZoNe™";
            
this->ResumeLayout(false);
            
this->PerformLayout();

        }
#pragma endregion


////////////////////////////////////////////////////////////////////////////////////
/             EIGENTLICHER CODE    
///////////////////////////////////////////////////////////////////////////////////
    
private: System::Void button1_Click(System::Object^  senderSystem::EventArgs^  e) {
                 
timer1->Start ();
             }
private: 
System::Void button2_Click(System::Object^  senderSystem::EventArgs^  e) {
              
timer1->Stop ();
              
timer2->Stop ();
              
timer3->Stop ();
         }
private: 
System::Void timer1_Tick(System::Object^  senderSystem::EventArgs^  e) {
            
SendKeys::Send (textBox1->Text);
            
SendKeys::Send ("{Enter}");
            
timer1->Stop ();
            
timer2->Start ();
         }
private: 
System::Void timer2_Tick(System::Object^  senderSystem::EventArgs^  e) {

            
SendKeys::Send (textBox2->Text);
            
SendKeys::Send ("{Enter}");
            
timer2->Stop ();
            
timer3->Start ();
         }
private: 
System::Void timer3_Tick(System::Object^  senderSystem::EventArgs^  e) {
            
SendKeys::Send (textBox3->Text);
            
SendKeys::Send ("{Enter}");
            
timer3->Stop ();
            
timer4->Start ();
         }
private: 
System::Void timer4_Tick(System::Object^  senderSystem::EventArgs^  e) {
            
SendKeys::Send ("_____Visit [www].Elitepvpers.[de] for NEW HACKS_____");
            
SendKeys::Send ("{Enter}");
            
timer4->Stop ();
            
timer1->Start ();
        }
}; 
FreeZoNe™ is offline  
Thanks
6 Users
Old 06/03/2011, 13:23   #2
 
elite*gold: 330
Join Date: May 2011
Posts: 170
Received Thanks: 84
Gibt es schon 1000000000000 mal....
Sɑinty is offline  
Old 06/03/2011, 13:28   #3
 
elite*gold: 0
Join Date: Dec 2010
Posts: 826
Received Thanks: 499
Wusste ich nicht Tut mir leid....
FreeZoNe™ is offline  
Old 06/03/2011, 13:37   #4
 
Siros3x´'s Avatar
 
elite*gold: 2
Join Date: Feb 2011
Posts: 1,316
Received Thanks: 158
#clrq
Siros3x´ is offline  
Old 06/03/2011, 15:02   #5
 
Klemens102's Avatar
 
elite*gold: 80
Join Date: May 2010
Posts: 1,628
Received Thanks: 507
Quote:
Originally Posted by n'like View Post
Gibt es schon 1000000000000 mal....
Ähm... Nein ?
Es gibt zwar viele Tutorials wie man einen Spamer in .net macht aber mit C++ hab ich bis jetzt noch keins gesehen.
Klemens102 is offline  
Old 06/03/2011, 15:16   #6
 
elite*gold: 0
Join Date: Dec 2010
Posts: 826
Received Thanks: 499
Ich hab grade Sufu benutz du hast ich hab auch noch gar nicht ein Tut auf dieser Art gefunden aber ich hoffe es hilft den meiten ^^
FreeZoNe™ is offline  
Old 06/03/2011, 15:16   #7
 
Bonrax's Avatar
 
elite*gold: 50
Join Date: Apr 2011
Posts: 9,249
Received Thanks: 1,708
^This

Gutes Tut

Werde mich gleich mal dran setzen!

#Thanked^^
Bonrax is offline  
Thanks
1 User
Old 06/04/2011, 19:09   #8
 
.Sebbel's Avatar
 
elite*gold: 0
Join Date: Apr 2010
Posts: 749
Received Thanks: 137
Umbenennen?

#Doppelpost -> reportet
.Sebbel is offline  
Old 06/04/2011, 20:02   #9
 
ToxicData's Avatar
 
elite*gold: 32
Join Date: Dec 2009
Posts: 937
Received Thanks: 1,307
Es ist .net C++ ... somit gehört es auch zu den .NET Tutorials.
Mute Lock ist glaub ich auchnich drin.

mfg ToxicData
ToxicData is offline  
Reply


Similar Threads Similar Threads
Warrock Ingame Spamer?
08/28/2010 - WarRock - 8 Replies
Wie der Titel schon sagt suche ich einen warrock INGAME Spamer d.h er soll dann automatisch f2 drücken. MfG
Warrock Spamer [10 Message] by Chrisslb
04/23/2010 - WarRock Hacks, Bots, Cheats & Exploits - 3 Replies
Hey jo das ist mein neuer spamer für Warrock Wichtig es ist kein hack oder cheat Screen : http://i43.tinypic.com/2hykw80.jpg



All times are GMT +1. The time now is 01:42.


Powered by vBulletin®
Copyright ©2000 - 2026, 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 ©2026 elitepvpers All Rights Reserved.