Search:

Type: Posts; User: WasserEsser

Page 1 of 10 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    21
    Views
    5,391

    [Help Request] Because C++ is a much lower level programming...

    Because C++ is a much lower level programming language than C# is.
  2. [Help] It's very, very hard to understand what you want.

    It's very, very hard to understand what you want.
  3. Replies
    11
    Views
    4,044

    [Release] Just another paste of the public code out there.

    Just another paste of the public code out there.
  4. Replies
    9
    Views
    1,316

    [Help] Read the rest of the thread next time.

    Read the rest of the thread next time.
  5. Replies
    10
    Views
    1,025

    [Source Code] Hint: Use a datatype that supports decimals such...

    Hint: Use a datatype that supports decimals such as float or double.
  6. That's wrong, it's not was asking for.

    That's wrong, it's not was asking for.
  7. Replies
    3
    Views
    544

    Well, expect less help then.

    Well, expect less help then.
  8. [Help Request] You could cast it to a DWORD DWORD...

    You could cast it to a DWORD


    DWORD hpaddress = FindDmaAddy(6, HealthOffsets, (DWORD)&HealthBaseGet);

    or change the function prototype


    DWORD FindDmaAddy(int PointerLevel, DWORD...
  9. [Help Request] Try DWORD hpaddress = FindDmaAddy(6,...

    Try DWORD hpaddress = FindDmaAddy(6, HealthOffsets, &HealthBaseGet);

    The function is dereferencing HealthBaseGet, which means your function would dereference the base address which would end up...
  10. [Help Request] Then that is wrong: DWORD HealthOffsets[]...

    Then that is wrong:



    DWORD HealthOffsets[] = {0x00,0x00,0x00,0x00,0x00,0x00};
  11. [Help Request] Could you show your pointer chain you have in...

    Could you show your pointer chain you have in Cheat Engine please?
  12. Replies
    3
    Views
    544

    It would be good to post information about the...

    It would be good to post information about the project here first, I'm not adding strangers before I know what they want.
  13. Replies
    5
    Views
    2,097

    Depends on what you want to achieve. If you just...

    Depends on what you want to achieve.
    If you just want to know about the PE structure, that's really all you need to know.
  14. Replies
    5
    Views
    2,097

    Mayion A small but good overview is provided in...

    Mayion A small but good overview is provided in this playlist
    If you want to get more indepth into any specific topic, just google the topic itself.
  15. [News] Not trying to be rude or anything, but this was...

    Not trying to be rude or anything, but this was really easy to spot.
  16. Replies
    9
    Views
    1,316

    [Help] Correct, overlooked that.

    Correct, overlooked that.
  17. Replies
    9
    Views
    1,316

    [Help] Use references wherever possible, use pointers...

    Use references wherever possible, use pointers only if you can't avoid them.

    Regardless, if you want to use pointers, this should work just fine:



    void getINPUTandClear(int* something);
    ...
  18. Replies
    11
    Views
    1,907

    Please read MSDN properly next time, it clearly...

    Please read MSDN properly next time, it clearly says that the module must've been loaded by the calling process.



    He is external, not inside the process that loaded the module and thus can't...
  19. Replies
    11
    Views
    1,907

    OP is outside of the process(external) and thus...

    OP is outside of the process(external) and thus can't use GetModuleHandle.
  20. Replies
    11
    Views
    1,907

    Additionally to that, you have to use...

    Additionally to that, you have to use parenthesies: (LPVOID)(baseAddress+moneyOffset)
    If you aren't doing that, you are casting baseAddress to LPVOID first and then adding moneyOffset.
    In this...
  21. [Tutorial] String encryption is the most useless thing on...

    String encryption is the most useless thing on planet earth against an anti-cheat.
  22. [Tutorial] How has this anything to do with the detection?...

    How has this anything to do with the detection?
    They are never, _never_ ever going to ban you for having a string called "Aimbot" in it.
  23. Replies
    7
    Views
    1,375

    [Help] That's wrong. The problem is that you are...

    That's wrong.
    The problem is that you are supposed to save your OldAngle for the next time you execute the code to get the delta and compensate for that.
    The thing is, once you saved it, you exit...
  24. Replies
    11
    Views
    1,364

    [Help] Why is everyone asking for code or his offsets?...

    Why is everyone asking for code or his offsets?
    The mistake is very obvious and written in his very first post.



    m_iCrossHairID as well as m_iTeamNum are member variables from the entity. ...
  25. Replies
    17
    Views
    5,175

    [Help] I prefer to keep things clean.

    I prefer to keep things clean.
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4