OldSchoolHack

Registrieren / Anmelden Deutsch

Benutzersuche: loginame

Such-Informationen
loginame
Themen im Forum
Thema Forum Letzter Beitrag Beiträge Zugriffe
icon

Go to first new post Multihack bfbc2 UD Privat cracked! (Multi-page thread 1 2 3 4) Erstellt am: Sa 3. Apr 2010, 12:39

loginame

preview Vorschau

Go To Post

hast du eine ahnung.... das spiel ev. löschen? reg daten löschen. auf meinem konto installieren deinen key hernehmen fertig
Battlefield Bad Company 2

Do 8. Apr 2010, 00:50

von Special_Soldier Go to last post
65 6110
icon

Go to first new post Multihack bfbc2 UD Privat cracked! (Multi-page thread 1 2 3 4) Erstellt am: Sa 3. Apr 2010, 12:39

loginame

preview Vorschau

Go To Post

wenn du meinst ^^ bleib nur in den glauben bis dann. hat spaß gemacht mit euch
Battlefield Bad Company 2

Do 8. Apr 2010, 00:50

von Special_Soldier Go to last post
65 6110
icon

Go to first new post CoD6 Keine Dedicated Server und Steampflicht! Erstellt am: Sa 17. Okt 2009, 23:22

loginame

preview Vorschau

Go To Post

die können sich mw2 sonst wo hinschieben!!!!

http://www.modern-warfare2.de/modern-warfare2-de-news-fragen-und-fehler/news-von-unseren-redakteuren-f%C3%BCr-user/2531-call-of-duty-modern-warfare-2-keine-dedicated-server-steampflicht/?f3253907

zitiere:

- Keine Dedicated Server (keine Custom Geschichten? - keine Clanserver?)
- Steam- & IW.net -registrierungspflicht
- Kein Punkbuster sondern VAC (Steams Anti-Cheat-Tool)
- DLC´s somit kostenpflichtig
Call of Duty 6: Modern Warfare 2

Mo 5. Apr 2010, 17:05

von geddo Go to last post
16 2991
icon

Go to first new post News - aktuelle Neuigkeiten (Multi-page thread 1 2 3) Erstellt am: Do 1. Apr 2010, 08:33

KN4CK3R

preview Vorschau

Go To Post

ich auch... aufm ladebildschirm von home zum hackarchive:
http://www.abload.de/img/unbenadsdsnntyxog.png
OldSchoolHack-News

Do 1. Apr 2010, 23:00

von ﮱAiM#. l Kreutaa Go to last post
47 5943
icon

Go to first new post Jamlegend bot: Brauche Hilfe Erstellt am: Fr 12. Mär 2010, 19:00

loginame

preview Vorschau

Go To Post

Will einen Jamlegend.com bot machen Source habe ich bloß was muss ich jetzt machen?  wie setzt mann den zusammen? könnte das einer bitte machen?  oder gibt es bessere bots für jamlegend?? hier mal die source hoffe mir hilft einer:


// JamBot is a bot especially for http://www.jamlegend.com
// it uses simple color detection for actions

#include "stdafx.h"
#include <iostream>
#include <vector>
#include <utility>

#define VK_1 0x31
#define VK_2 0x32
#define VK_3 0x33
#define VK_4 0x34
#define VK_5 0x35

struct Vector2D
{
   Vector2D() {}
   Vector2D(float x, float y)
   {
       this->x = x;
       this->y = y;
   }
   float x, y;
};

struct Vector3D
{
   Vector3D() {}
   Vector3D(float x, float y, float z)
   {
       this->x = x;
       this->y = y;
       this->z = z;
   }
   float x, y, z;
};

struct Button
{
   Button(COLORREF c, COLORREF hc, Vector2D p, Vector2D hp, int k)
   {
       color = c;
       holdColor = hc;
       pos = p;
       holdPos = hp;
       locktime = 0;
       down = false;
       key = k;
   }

   COLORREF color;
   COLORREF holdColor;

   Vector2D pos;
   Vector2D holdPos;
   unsigned long locktime;
   bool down;
   int key;
};

class Window
{
public:
   Window()
   {
       hDC = CreateDC("DISPLAY", NULL, NULL, NULL);
       hWnd = FindWindow("OperaWindowClass", NULL);
       Init();
       Run();
   }

   ~Window()
   {
       DeleteDC(hDC);
   }
private:
   COLORREF GetColor(Vector2D pos, int rows , int cols)
   {
       Vector3D rgb;
       int counter = 0;

       if (rows == 0 || cols == 0)
       {
           return GetPixel(hDC, (int)pos.x, (int)pos.y);
       }

       // row oder col == 1 -> -1, 0, 1, == 2 -> -2, -1, 0, 1, 2
       for (int y = -cols; y <= cols; y++)
       {
           for (int x = -rows; x <= rows; x++)
           {
               COLORREF color = GetPixel(hDC, (int)pos.x + x, (int)pos.y + y);

               rgb.x += GetRValue(color);
               rgb.y += GetGValue(color);
               rgb.z += GetBValue(color);

               counter++;
           }
       }

       rgb.x /= counter;
       rgb.y /= counter;
       rgb.z /= counter;
       
       return RGB(rgb.x, rgb.y, rgb.z);
   }

   void Init()
   {
       buttons.push_back(Button(RGB(255, 236, 136), RGB(255, 247, 51),  Vector2D(549, 480), Vector2D(552, 465), VK_1)); // gelb
       buttons.push_back(Button(RGB(236, 148, 255), RGB(246, 96, 254),  Vector2D(589, 480), Vector2D(592, 465), VK_2)); // lila
       buttons.push_back(Button(RGB(198, 255, 130), RGB(201, 255, 50),  Vector2D(629, 480), Vector2D(632, 465), VK_3)); // grün
       buttons.push_back(Button(RGB(255, 146, 134), RGB(255, 97, 100),  Vector2D(669, 480), Vector2D(672, 465), VK_4)); // rot
       buttons.push_back(Button(RGB(151, 211, 247), RGB(146, 246, 255), Vector2D(711, 480), Vector2D(712, 465), VK_5)); // blau
   }

   bool IsColorSimilar(COLORREF c1, COLORREF c2, int maxDistance)
   {
       byte r1 = GetRValue(c1);
       byte r2 = GetRValue(c2);

       byte g1 = GetGValue(c1);
       byte g2 = GetGValue(c2);

       byte b1 = GetBValue(c1);
       byte b2 = GetBValue(c2);

       // größer dem kleineren und kleiner dem größeren
       if (r1 <= Clamp(r2 + maxDistance, 0, 255) &&
           r1 >= Clamp(r2 - maxDistance, 0, 255) &&

           g1 <= Clamp(g2 + maxDistance, 0, 255) &&
           g1 >= Clamp(g2 - maxDistance, 0, 255) &&

           b1 <= Clamp(b2 + maxDistance, 0, 255) &&
           b1 >= Clamp(b2 - maxDistance, 0, 255))
       {
           return true;
       }
       return false;
   }

   bool HasToHold(Button &b)
   {
       COLORREF lineColor = GetColor(b.holdPos, 0, 0);

       if (IsColorSimilar(lineColor, b.holdColor, 60))
       {
           return true;
       }

       return false;
   }

   void Run()
   {
       // better sleep
       timeBeginPeriod(1);

       while (true)
       {
           for(size_t i = 0; i < buttons.size(); i++)
           {
               Button &b = buttons;

               COLORREF targetColor = GetColor(b.pos, 2, 1);

               bool isSimilar = IsColorSimilar(targetColor, b.color, 30);

               if (isSimilar && !b.down/* && (b.locktime + 90) < timeGetTime() */)
               {
                   keybd_event(b.key, 0, 0, 0);
                   // press enter at the same time
                   //keybd_event(0xD, 0, 0, 0);
                   b.down = true;
                   b.locktime = timeGetTime();
               }
               else if(!isSimilar && b.down && /*(b.locktime + 50) < timeGetTime() && */!HasToHold(b))
               {
                   //keybd_event(0xD, 0, KEYEVENTF_KEYUP, 0);
                   keybd_event(b.key, 0, KEYEVENTF_KEYUP, 0);                    
                   b.down = false;
               }
           }

           Sleep(10);
       }
   }

   int Clamp(int val, int min, int max)
   {
       return max(min, min(val, max));
   }

   HDC hDC;
   HWND hWnd;
   std::vector<Button> buttons;
};


int _tmain(int argc, _TCHAR* argv[])
{
   Window wnd;
   return 0;
}
Projekte

Fr 12. Mär 2010, 19:00

von loginame Go to last post
0 623
icon

Go to first new post Türke am telefon will sich rechen xD Erstellt am: Mi 23. Sep 2009, 17:11

loginame

preview Vorschau

Go To Post

wer sagt da sih deutsc chreebe? kenn auch bayisch oda hochdeutsch sein.
Fun

Do 7. Jan 2010, 14:59

von sid Go to last post
16 1125
icon

Go to first new post Türke am telefon will sich rechen xD Erstellt am: Mi 23. Sep 2009, 17:11

loginame

preview Vorschau

Go To Post

ja....
Fun

Do 7. Jan 2010, 14:59

von sid Go to last post
16 1125
icon

Go to first new post Türke am telefon will sich rechen xD Erstellt am: Mi 23. Sep 2009, 17:11

loginame

preview Vorschau

Go To Post

nein will bloß weitere diskosionen sparen
Fun

Do 7. Jan 2010, 14:59

von sid Go to last post
16 1125
icon

Go to first new post Türke am telefon will sich rechen xD Erstellt am: Mi 23. Sep 2009, 17:11

loginame

preview Vorschau

Go To Post

ok 9mal klug.... bist ja schlimmer als mein ehemaliger Deutschlehrer....
Fun

Do 7. Jan 2010, 14:59

von sid Go to last post
16 1125
icon

Go to first new post Türke am telefon will sich rechen xD Erstellt am: Mi 23. Sep 2009, 17:11

loginame

preview Vorschau

Go To Post

nein wer sagt das ich rächen schreiben will??!!
Fun

Do 7. Jan 2010, 14:59

von sid Go to last post
16 1125
icon

Go to first new post Türke am telefon will sich rechen xD Erstellt am: Mi 23. Sep 2009, 17:11

loginame

preview Vorschau

Go To Post

http://www.youtube.com/watch?v=gPRH290eglU&feature=player_profilepage  hammer!!
Fun

Do 7. Jan 2010, 14:59

von sid Go to last post
16 1125
icon

Go to first new post Metin2 farmbot Erstellt am: So 15. Feb 2009, 03:12

orbatron2

preview Vorschau

Go To Post

einmal poster....
Andere MMO und Strategie Spiele

So 15. Nov 2009, 12:15

von Flyffismyfun Go to last post
7 3449
icon

Go to first new post op dragon rising hack Erstellt am: So 18. Okt 2009, 18:49

loginame

preview Vorschau

Go To Post

wann kommt endlich einer?
Andere MMO und Strategie Spiele

Di 20. Okt 2009, 03:37

von xst Go to last post
3 741
icon

Go to first new post op dragon rising hack Erstellt am: So 18. Okt 2009, 18:49

loginame

preview Vorschau

Go To Post

ich find das spiel cool . in anderen foren hab ich gehört das die ersten chame hacks dies woche noch kommen
Andere MMO und Strategie Spiele

Di 20. Okt 2009, 03:37

von xst Go to last post
3 741
icon

Go to first new post Privat Hack für 24 Games (Multi-page thread 1 2) Erstellt am: Fr 9. Okt 2009, 13:13

EliteHaX

preview Vorschau

Go To Post

egal es soll ja puplic werden ^^   kn4ck3r wird schon das teil updaten
Mülleimer

Mo 19. Okt 2009, 01:09

von Special_Soldier Go to last post
23 1647
icon

Go to first new post Privat Hack für 24 Games (Multi-page thread 1 2) Erstellt am: Fr 9. Okt 2009, 13:13

EliteHaX

preview Vorschau

Go To Post

will den auch haben ^^ kn4ck3r mach doch was xD
Mülleimer

Mo 19. Okt 2009, 01:09

von Special_Soldier Go to last post
23 1647
icon

Go to first new post Privat Hack für 24 Games (Multi-page thread 1 2) Erstellt am: Fr 9. Okt 2009, 13:13

EliteHaX

preview Vorschau

Go To Post

er will ja das das gecrackt wird
Mülleimer

Mo 19. Okt 2009, 01:09

von Special_Soldier Go to last post
23 1647
icon

Go to first new post News - kein Shoutbox gespamme mehr Erstellt am: Mi 14. Okt 2009, 15:10

KN4CK3R

preview Vorschau

Go To Post

juhu endlich keine spamer mehr!!!!
OldSchoolHack-News

So 18. Okt 2009, 16:17

von frOSH Go to last post
10 763
icon

Go to first new post Fick Lied Erstellt am: Do 15. Okt 2009, 20:23

KN4CK3R

preview Vorschau

Go To Post

hammer geil mann! xDDD
Fun

So 18. Okt 2009, 01:23

von AldiSkill Go to last post
4 505
icon

Go to first new post Memory Werte setzen! Erstellt am: Mi 14. Okt 2009, 01:27

PDX

preview Vorschau

Go To Post

mann der ist anfänger macht den doch ich so nieder -.-!
VB, C/C++, Delphi, etc

Mi 14. Okt 2009, 22:39

von PDX Go to last post
8 765