Page 6 of 7

Re: how to download a bypass for hacking program~~~~

Posted: Thu Jun 24, 2010 8:25 pm
by iLostMyBallz
All of ur post i use with my noob com either crash/cancel programs or spam com ._.

Re: how to download a bypass for hacking program~~~~

Posted: Thu Jun 24, 2010 9:43 pm
by NoobHacker
LearningCode wrote:I duno much about C++, because Google really teaches nothing =/

OOP is.. ?
An array, an allocator.. And a deallocator?

Like..

Code: Select all

//For the allocator and deallocator
int LowestIndex = 0;
int Stack = 0;

//For the OOP thingy, I guess =/
int IntegerArray [8190];

int GetAllocation () {
     int This = LowestIndex;

     if (This==0) {
        Stack=Stack+1;
        This=Stack;
     }

     if (This>8190) {
         return 0;
     }

     return This;
}

void DeAllocate(Integer) {
    if (Integer != null) {
        LowestIndex = Integer;
    }
}

void main () {
    int Loop = 1;
    int CurrentAllocation;    

    srand(time(0));

    while (Loop < 5) {
            CurrentAllocation= GetAllocation();
            IntegerArray[CurrentAllocation] = Loop;
            if (rand() % 2 == 1) {
                DeAllocate(CurrentAllocation);
            }

    Loop = Loop + 1;
    }
    
    /*What it'll do is allocate an instance of a struct, I guess =/
       Then, there are a few possible outcomes, Let us say the following happens:
       01) Loop Starts
       02) CurrentAllocation is set to "GetAllocation()"
       03) GetAllocation() set 'This' equal to 0 because LowestIndex is 0 right now
       04) This is equal to 0, so, Stack becomes 'Stack + 1' = 1, I don't want to allocate instance 0, lol
       05) GetAllocation() returns the value of '1'
       06) We set IntegerArray[1], a supposed struct member, to the current loop, 1
       07) We randomize a number, it's != 1, so we do not deallocate.
       08) Loop = Loop + 1 = 2
       09) CurrentAllocation is set to "GetAllocation()"
       10) GetAllocation() set 'This' equal to 0 because LowestIndex is 0 right now
       11) This is equal to 0, so, Stack becomes 'Stack + 1' = 2
       12) GetAllocation() returns the value of '2'
       13) We set IntegerArray[2], a supposed struct member, to the current loop, 2
       14) We randomize a number, it's != 1, so we do not deallocate.
       15) Loop = Loop + 1 = 3
       09) CurrentAllocation is set to "GetAllocation()"
       10) GetAllocation() set 'This' equal to 0 because LowestIndex is 0 right now
       11) This is equal to 0, so, Stack becomes 'Stack + 1' = 3
       12) GetAllocation() returns the value of '3'
       13) We set IntegerArray[3], a supposed struct member, to the current loop, 3
       14) We randomize a number, it's == 1, so we deallocate.
       15) We call DeAllocate(CurrentAllocation)
       16) DeAllocate checks if the given integer is == null
       17) It is not, so it sets LowestIndex to '3'
       18) Loop = Loop + 1 = 4
       19) CurrentAllocation is set to "GetAllocation()"
       20) GetAllocation() set 'This' equal to 3 because LowestIndex is 3 right now
       22) GetAllocation() returns the value of '3'
       23) We set IntegerArray[3], a supposed struct member, to the current loop, 4
       24) We randomize a number, it's == 1, so we deallocate.
       25) We call DeAllocate(CurrentAllocation)
       26) DeAllocate checks if the given integer is == null
       27) It is not, so it sets LowestIndex to '3'
       28) Loop = Loop + 1 = 5
       29) Loop is == 5 and is not smaller than it, so we end the loop there.

Let us take a look at the end results of out IntegerArray:
IntegerArray[1] = 1
IntegerArray[2] = 2
IntegerArray[3] = 4 <--- And not 3 XD

Erm.. Something like that? o.0

*/

}

thats not basics
basic find cout then something ass will appear :lol:

Re: how to download a bypass for hacking program~~~~

Posted: Thu Jun 24, 2010 10:00 pm
by LearningCode
I really wish C++ tutorials out there would teach something other than cout =/
All 10+ of the sites I've been to don't teach much =(

Haha, I've brought the thread off-topic.

Re: how to download a bypass for hacking program~~~~

Posted: Thu Jun 24, 2010 10:12 pm
by NoobHacker
LearningCode wrote:I really wish C++ tutorials out there would teach something other than cout =/
All 10+ of the sites I've been to don't teach much =(

Haha, I've brought the thread off-topic.
you may learn some ui design ...

Re: how to download a bypass for hacking program~~~~

Posted: Thu Jun 24, 2010 10:26 pm
by LearningCode
Lemme' google that up and see O_O

Re: how to download a bypass for hacking program~~~~

Posted: Thu Jun 24, 2010 10:40 pm
by NoobHacker
LearningCode wrote:Lemme' google that up and see O_O
just download VC++2010 express and open new windows form application and play yourself :D

Re: how to download a bypass for hacking program~~~~

Posted: Thu Jun 24, 2010 10:47 pm
by LearningCode
Damn..
Not Visual C++, too...
I've been having weird PC problems =/

Most applications that are Microsoft related won't run =(
Windows Live Messenger won't run.
Internet Explorer won't run.
Sometimes, explorer.exe won't run (I have to restart PC a few times).
Windows media player won't run.

Now Visual C++.
F***

I would reformat, but I lost the OS CD -____-
I was so looking forward to learning again, too =/

When it crashes, all I get is, "Blah has encountered a fatal error"
And send error report thingy.

It all started with the JIT Debugger which came with a trial version of Visual Studio Professional or sth like that.
I can't even use my WarCraft World Editor anymore =/
But my WarCraft still works, so can DotA xD

Got any other C++ compilers you know of?

Re: how to download a bypass for hacking program~~~~

Posted: Thu Jun 24, 2010 10:53 pm
by Nerrazzuri
LearningCode wrote:Damn..
Not Visual C++, too...
I've been having weird PC problems =/

Most applications that are Microsoft related won't run =(
Windows Live Messenger won't run.
Internet Explorer won't run.
Sometimes, explorer.exe won't run (I have to restart PC a few times).
Windows media player won't run.

Now Visual C++.
F***

I would reformat, but I lost the OS CD -____-
I was so looking forward to learning again, too =/

When it crashes, all I get is, "Blah has encountered a fatal error"
And send error report thingy.

It all started with the JIT Debugger which came with a trial version of Visual Studio Professional or sth like that.
I can't even use my WarCraft World Editor anymore =/
But my WarCraft still works, so can DotA xD

Got any other C++ compilers you know of?
Borland C++ Builder, the code is slightly different but works the same in general.

Re: how to download a bypass for hacking program~~~~

Posted: Thu Jun 24, 2010 11:04 pm
by LearningCode
I tried googling: Borland C++ Builder

No comprehensible results showed up =/
Any direct links? >.>

Re: how to download a bypass for hacking program~~~~

Posted: Fri Jun 25, 2010 1:12 am
by Nerrazzuri
LearningCode wrote:I tried googling: Borland C++ Builder

No comprehensible results showed up =/
Any direct links? >.>
My school gives us CD to install with, so I don't have any link, try torrent site?