Results 1 to 4 of 4
  1. #1
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool

    Starting your hacks, Without using DllMain

    well, this is very simple. Before your hack can Call "DLLMain" it has the initialize all all classes and structures you've made. I have not name it, and I do not think i have to name it but, I will call it Class Start. It is very simple.

    The reason i posted this is because i place something in my DllMain and my hack appeared to DC, also other reasons caused it to dc but this is a good think.

    [highlight=c]

    DWORD main(void)
    {
    while (true)
    {
    PTC("ShowFPS 1");
    Sleep(100);
    }
    }

    DWORD base::Start()
    {
    CreateThread(0,0,main,0,0,0);
    }

    class base
    {
    base()
    {
    Start();
    }

    DWORD Start();
    };
    [/highlight]

    That is your default run.

    simply just define a variable or a class which controls you whole hack.
    [highlight=c]
    base MyHack;
    [/highlight]

    Tested with my current base "Revival"
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  2. The Following 4 Users Say Thank You to topblast For This Useful Post:

    ++PashaAmd++ (05-22-2011),mmbob (05-22-2011),[N.O]N.A.M.E (08-12-2011),_Fk127_ (05-22-2011)

  3. #2
    mmbob's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    ja
    Posts
    653
    Reputation
    70
    Thanks
    1,157
    My Mood
    Bitchy
    That is actually a pretty neat idea. Good job .

  4. The Following User Says Thank You to mmbob For This Useful Post:

    topblast (05-22-2011)

  5. #3
    ++PashaAmd++'s Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    229
    Reputation
    11
    Thanks
    37
    nice .

  6. #4
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    it is very easy, anything to help
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development