Thread: uhm .dll help

Results 1 to 7 of 7
  1. #1
    DylanOwnsYou's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    In the air, rising higher and higher as I watch you crash.
    Posts
    379
    Reputation
    19
    Thanks
    82
    My Mood
    Cynical

    uhm .dll help

    here's my .dll and my coding(shown after virus scan) i need some help updating it. i coded it from different bits of random codes from outdated things and it worked without a compiler as the first thing ive made with c++. i need this to work please, ill give u so much credit. not begging, u dont have to help, only if ur cool.
    Virustotal. MD5: 936024e2a4fccd3a74198149a0d888ff
    File hack.rar received on 2009.10.06 02:26:30 (UTC)
    Current status: finished
    Result: 0/41 (0.00%)
    Compact
    Print results
    Antivirus Version Last Update Result
    a-squared 4.5.0.24 2009.10.06 -
    AhnLab-V3 5.0.0.2 2009.10.05 -
    AntiVir 7.9.1.33 2009.10.05 -
    Antiy-AVL 2.0.3.7 2009.10.05 -
    Authentium 5.1.2.4 2009.10.06 -
    Avast 4.8.1351.0 2009.10.06 -
    AVG 8.5.0.420 2009.10.04 -
    BitDefender 7.2 2009.10.06 -
    CAT-QuickHeal 10.00 2009.10.05 -
    ClamAV 0.94.1 2009.10.05 -
    Comodo 2521 2009.10.06 -
    DrWeb 5.0.0.12182 2009.10.06 -
    eSafe 7.0.17.0 2009.10.05 -
    eTrust-Vet 31.6.6779 2009.10.06 -
    F-Prot 4.5.1.85 2009.10.05 -
    F-Secure 8.0.14470.0 2009.10.06 -
    Fortinet 3.120.0.0 2009.10.06 -
    GData 19 2009.10.06 -
    Ikarus T3.1.1.72.0 2009.10.06 -
    Jiangmin 11.0.800 2009.10.05 -
    K7AntiVirus 7.10.862 2009.10.05 -
    Kaspersky 7.0.0.125 2009.10.06 -
    McAfee 5762 2009.10.05 -
    McAfee+Artemis 5762 2009.10.05 -
    McAfee-GW-Edition 6.8.5 2009.10.06 -
    Microsoft 1.5101 2009.10.05 -
    NOD32 4482 2009.10.05 -
    Norman 6.01.09 2009.10.05 -
    nProtect 2009.1.8.0 2009.10.05 -
    Panda 10.0.2.2 2009.10.05 -
    PCTools 4.4.2.0 2009.10.05 -
    Prevx 3.0 2009.10.06 -
    Rising 21.49.22.00 2009.09.30 -
    Sophos 4.45.0 2009.10.06 -
    Sunbelt 3.2.1858.2 2009.10.05 -
    Symantec 1.4.4.12 2009.10.06 -
    TheHacker 6.5.0.2.031 2009.10.05 -
    TrendMicro 8.950.0.1094 2009.10.05 -
    VBA32 3.12.10.11 2009.10.05 -
    ViRobot 2009.10.6.1971 2009.10.06 -
    VirusBuster 4.6.5.0 2009.10.05 -
    Additional information
    File size: 7812 bytes
    MD5 : 936024e2a4fccd3a74198149a0d888ff
    SHA1 : 5c059f9691db6ce4d7d12a448f4ee15c10c0917a
    SHA256: 6faae60e993a121d3959b829d61ceee611af47b6aef7d6882e da97b016a64251
    TrID : File type identification
    RAR Archive (83.3%)
    REALbasic Project (16.6%)
    ssdeep: 192:Vg1TXHqlP3gdM/Jn+3XBBwkwDkGdrr0Z3VRv6SfCe:kzHA3xyXykGdrr0ZFRce
    PEiD : -
    RDS : NSRL Reference Data Set
    -

    #include <windows.h>
    #include <stdio.h>

    bool stamina=false;

    void TheHacks()
    {
    while(1){
    if(GetAsyncKeyState(VK_F6) &1){ //F6
    stamina = !stamina;
    }
    if(stamina==true){
    DWORD dwPlayerPointer = *(DWORD*)0x002200;
    if(dwPlayerPointer != 0)
    *(float*)(dwPlayerPointer + 0x2A4) = 100;
    }
    Sleep(50);
    }
    }

    BOOL WINAPI DllMain(HINSTANCE module, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)TheHacks, NULL, NULL, NULL); //create the new Thread
    }
    return TRUE;
    }

    there's the coding, if u take it it's a waste so i wouldn't mind just give me credit u theifs

  2. #2
    zeco's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    683
    Reputation
    12
    Thanks
    78
    My Mood
    Cynical
    What do you mean it worked without a compiler ?

  3. #3
    deather1995's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    6
    My Mood
    Confused
    yeah, when i made it, and clicked debug, it formed on my desktop. then when i testd on my comp it worked. but then it doesnt work for other people. i need to make it work for others.

  4. #4
    lalakijilp's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Posts
    310
    Reputation
    9
    Thanks
    53
    My Mood
    Blah
    Quote Originally Posted by deather1995 View Post
    yeah, when i made it, and clicked debug, it formed on my desktop. then when i testd on my comp it worked. but then it doesnt work for other people. i need to make it work for others.
    if (deather1995==DylanOwnsYou) bann deather1995

  5. #5
    zeco's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    683
    Reputation
    12
    Thanks
    78
    My Mood
    Cynical
    Quote Originally Posted by deather1995 View Post
    yeah, when i made it, and clicked debug, it formed on my desktop. then when i testd on my comp it worked. but then it doesnt work for other people. i need to make it work for others.
    Then
    A.) You did in fact compile it -.-

    and

    B.) You compiled it in debug mode thus it only works for you


    -_-

  6. #6
    DylanOwnsYou's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    In the air, rising higher and higher as I watch you crash.
    Posts
    379
    Reputation
    19
    Thanks
    82
    My Mood
    Cynical
    oh, lol i did? then taht means i got banned for stuff that works what the fuck, thanks man, ill compile better

  7. #7
    B1ackAnge1's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    455
    Reputation
    74
    Thanks
    344
    My Mood
    Cynical
    No you got banned for having no clue, then lying about it and being an obnoxious ass.
    I mean come on... you're now an 'epic c++ coder'? that proves it right there..
    care to list what you've been doing with C++ the last oh.... let's make this fair.. let's only
    do the last 10 years? too much? how about 5? You apparently don't even know
    what a Compiler is, let alone a Linker or a Header file... Seriously kiddo - I've forgotten more
    about C++ than you think you know so get off your ego-trip...You may want to check
    my other 'day to day' post here and see how much it matches with your actions here.
    And you KNOW when you look at it objectively it's just fuckin' ridiculous to behave like that...
    (and totally immature.. then again guessing by what i've seen I think that's probably the age range
    you're in anyway, so you probably think that's 'cool' and what not... it's not.. it makes you look
    like a retard....)

    Some humility would get you much further ( & a lot more help) around here.
    We LIKE to help people around here, but what's the point if a) They don't listen b) Have an attitude & act like they're superior (then why are you stuck on a C++ chapter 1 question??) c) and even insult us.

    Look at 'crushed': he's totally starting from scratch, but he's taking it easy, admits he has no clue and asks about what he's stuck on even if it's the most basic of basic things. We Help him out. He doesn't come on here calling people names claiming to be some leet hacker and then can't figure out what i++ means or other trivial problems or using wrong terminology (which to ANYONE with ANY knowledge would show that you'd have no clue what you're doing..)

    Anyway...Now if only people would get banned for being unable to write basic understandable English...
    Last edited by B1ackAnge1; 10-08-2009 at 02:50 PM.

  8. The Following 3 Users Say Thank You to B1ackAnge1 For This Useful Post:

    Hell_Demon (10-08-2009),why06jz (10-08-2009),zeco (10-08-2009)

Similar Threads

  1. [Help Request] DLL Help?
    By ßLøøð in forum CrossFire Help
    Replies: 12
    Last Post: 06-01-2011, 02:22 PM
  2. MFC71.DLL Help please
    By lymetv in forum Combat Arms Help
    Replies: 6
    Last Post: 12-09-2010, 11:05 PM
  3. [Help] Dll Help Please
    By infectedangel in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 3
    Last Post: 01-23-2010, 11:30 AM
  4. Injector and Dll help
    By Xlilzoosk8rX in forum C++/C Programming
    Replies: 8
    Last Post: 01-08-2010, 02:26 PM
  5. C++ DLL help
    By djtrickdog in forum Combat Arms Hacks & Cheats
    Replies: 0
    Last Post: 08-11-2008, 08:10 PM

Tags for this Thread