-{OTD}- Clan
Would you like to react to this message? Create an account in a few clicks or log in to continue.

-{OTD}- Clan

Hacker's Clan
 
HomeHome  PortalPortal  SearchSearch  Latest imagesLatest images  RegisterRegister  Log inLog in  

 

 A must for game hackers.

Go down 
+2
Fuck_FireFox
crazyninja
6 posters
AuthorMessage
crazyninja
Admin
Admin



Posts : 119
Join date : 2008-08-25

A must for game hackers. Empty
PostSubject: A must for game hackers.   A must for game hackers. I_icon_minitimeFri Nov 21, 2008 8:55 pm

Watch and learn. In the end you will benefit. http://tuts4you.com/download.php?list.17
Back to top Go down
Fuck_FireFox
Admin
Admin
Fuck_FireFox


Posts : 285
Join date : 2008-07-11

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeFri Nov 21, 2008 11:25 pm

thats pretty kool dude.nice find. i might look one day. perhaps
Back to top Go down
http://www.zeitgeistmovie.com/
crazyninja
Admin
Admin



Posts : 119
Join date : 2008-08-25

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeSat Nov 22, 2008 12:26 am

LOL i think you will need more than one day... I have a feeling you could play the videos for a week straight and still not be done
Back to top Go down
Fuck_FireFox
Admin
Admin
Fuck_FireFox


Posts : 285
Join date : 2008-07-11

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeSat Nov 22, 2008 12:38 am

hmm. theres that many?
Back to top Go down
http://www.zeitgeistmovie.com/
crazyninja
Admin
Admin



Posts : 119
Join date : 2008-08-25

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeSun Nov 23, 2008 1:49 am

40 vids... and they aren't short ones either.
Back to top Go down
Dr.Flu
Coder
Coder
Dr.Flu


Posts : 94
Join date : 2008-09-20

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeSun Nov 23, 2008 2:46 pm

i have a collection almost like this in a set of Winrar from a friend shes good. but ill check these out also
Back to top Go down
bbq^

bbq^


Posts : 234
Join date : 2008-08-10

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeMon Nov 24, 2008 12:21 am

Nice one Dr.Flu I think i will most definitely download these and use them. I fall asleep reading books on this sort of thing Smile
Back to top Go down
crazyninja
Admin
Admin



Posts : 119
Join date : 2008-08-25

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeMon Nov 24, 2008 12:50 am

Yeah no better way to do it than just doing it. Doing it over and over again. I have also found that looking at my own programs in ollydbg helps me to understand exactly what they are doing on a lower level than what i think about when i am writing them in c++.
Back to top Go down
bbq^

bbq^


Posts : 234
Join date : 2008-08-10

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeMon Nov 24, 2008 2:53 am

Yea i made some simple programs in c++ and then opened them in olley debug to trace them - which made it easier as i had the sourece... simple things like

Code:

#include <iostream>

using namespace std;

char pCode;

int main()
{
  cout << "enter password character" << endl;
  cin>>pCode;

  if (pCode == 'A')
  cout << "cracked" << endl;

  else
  cout << "fail" << endl;

  getchar();
  return 0;

}


Then moving on to make functions etc... follow them. I still get lost in the ASM stuff but i am working on it :p
Back to top Go down
Fuck_FireFox
Admin
Admin
Fuck_FireFox


Posts : 285
Join date : 2008-07-11

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeMon Nov 24, 2008 4:25 am

yeah dr flu watch when you say she here there fucking explodeing in there pants as far.....
Back to top Go down
http://www.zeitgeistmovie.com/
Dr.Flu
Coder
Coder
Dr.Flu


Posts : 94
Join date : 2008-09-20

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeMon Nov 24, 2008 8:49 am

lol i started learning asm by simply using Ally or rather i use De-Fixed. (An Special Edition of Olly) on CMD.EXE, and removed the administrative restriction on it. on ur pc just restrict non admin users. then log on to that account and trying patching programs that require administrative rights. its actually easy. just a few jmps or nops ect...
Back to top Go down
ZoX
Member
Member
ZoX


Posts : 598
Join date : 2008-07-20
Age : 34

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeMon Nov 24, 2008 4:34 pm

Crazy i finished homework Razz
Code:

#include <iostream.h>
#include <stdlib.h>
#include <time.h>


int main ()
{
    long secretnumber = 0, user_number = 0;
    const long MAX = 100, MIN = 1;

    srand(time(NULL));
    secretnumber = (rand() % (MAX - MIN + 1)) + MIN; //random number

    cout<<"Find random number"<<endl<<endl;
   
    // Loops forever until user finds the number
    while (user_number != secretnumber)
    {
        cout<<"Pick a number : ";
        cin >> user_number;

        if (secretnumber > user_number)
            cout << "Higher.."<<endl<<endl;

        else if (secretnumber < user_number)
            cout << "Lower.."<<endl<<endl;

        else
            cout << "You find the number! GJ!"<<endl<<endl;

    }
}
Back to top Go down
http://best-hacks.darkbb.com
bbq^

bbq^


Posts : 234
Join date : 2008-08-10

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeMon Nov 24, 2008 11:19 pm

oh wut zox :O

oh btw i have uploaded all the vids to my site - you can download them

Here

As 2 rar files :D
Back to top Go down
ZoX
Member
Member
ZoX


Posts : 598
Join date : 2008-07-20
Age : 34

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeFri Dec 12, 2008 6:07 am

Took me fucking years, but yeah, i am start to learn
Back to top Go down
http://best-hacks.darkbb.com
bbq^

bbq^


Posts : 234
Join date : 2008-08-10

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeFri Dec 12, 2008 9:47 am

just to make it easier

Downloads

Vids 1 - 20
Vids 21 - 40
Back to top Go down
Reaper
Admin
Admin



Posts : 173
Join date : 2008-08-10

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeSun Dec 14, 2008 12:22 pm

bbq^ wrote:
oh wut zox :O

oh btw i have uploaded all the vids to my site - you can download them

Here

As 2 rar files :D

21-40 are my contribution cough cough haha..
Back to top Go down
bbq^

bbq^


Posts : 234
Join date : 2008-08-10

A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitimeSun Dec 14, 2008 5:46 pm

lol yea they are - you downloaded them uploaded them to rs then i downloaded and uploaded them to ee Razz
Back to top Go down
Sponsored content





A must for game hackers. Empty
PostSubject: Re: A must for game hackers.   A must for game hackers. I_icon_minitime

Back to top Go down
 
A must for game hackers.
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
-{OTD}- Clan :: Coding :: Assembly-
Jump to: