Results 1 to 10 of 10
  1. #1
    umutyeniyurt's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed

    how to use 2 offset

    hi everybody;
    how to use
    DWORD dwPointer = *(DWORD*)0x1052AF21;
    *(DWORD*)( dwPointer + 0x7C ) = 5;
    how to add more offset ??

    ---------- Post added at 05:05 AM ---------- Previous post was at 04:50 AM ----------

    oçlar baksanıza

    ---------- Post added at 06:44 AM ---------- Previous post was at 05:05 AM ----------

    ++++++++++++++++++

    ---------- Post added at 07:56 AM ---------- Previous post was at 06:44 AM ----------

    ++++++++++++++
    Last edited by umutyeniyurt; 07-15-2013 at 05:05 AM.

  2. #2
    GoodDeal's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Happy
    xD

    That means nothing unless you know how to code, or already have a copy pasted code and you know where to put it.

    Edit:

    Saw your post on learning how to write a trainer, so you're just getting offsets off of the internet and hoping to make something out of it?

    I'd suggest learning the basics of C++, then trying something like that.
    Last edited by GoodDeal; 07-15-2013 at 11:59 AM.

  3. #3
    umutyeniyurt's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    men if do you know how I use 2 offset for dword code please tell me. I now beginner I now beging you please men please

  4. #4
    GoodDeal's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Happy
    Quote Originally Posted by umutyeniyurt View Post
    men if do you know how I use 2 offset for dword code please tell me. I now beginner I now beging you please men please
    1) Get public source code
    2) Put that offset in
    3) Put your name in the credits
    4) Compile
    5) Sell l33t hax

  5. #5
    umutyeniyurt's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    please give me example

  6. #6
    umutyeniyurt's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    pleaseeeeeeeeeeeee

  7. #7
    atom0s's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    403
    Reputation
    139
    Thanks
    104
    Just keep reading the pointers as you did the first time.

    Code:
    DWORD dwPointer = *(DWORD*)0x1052AF21; 
    dwPointer = *(DWORD*)( dwPointer + 0xDE );
    dwPointer = *(DWORD*)( dwPointer + 0xAD );
    dwPointer = *(DWORD*)( dwPointer + 0xBE );
    *(DWORD*)( dwPointer + 0xEF ) = 5;
    - Gone; this is another shit forum with children as administrators. Not worth contributing to.

  8. #8
    umutyeniyurt's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    thanks atom karınca

    ---------- Post added at 08:10 AM ---------- Previous post was at 07:44 AM ----------

    how can use gameclientdll+0058615 offset 30

    ---------- Post added at 08:19 AM ---------- Previous post was at 08:10 AM ----------

    how can use gameclient.dll+0058615 offset 30

  9. #9
    atom0s's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    403
    Reputation
    139
    Thanks
    104
    // This would be the first pointer..
    DWORD dwPointer = *(DWORD*)( (DWORD)GetModuleHandleA( "gameclient.dll" ) + 0x00058615 );

    // This would be with the offset..
    *(DWORD*)( dwPointer + 0x30 ) = 1234;

    No idea what the end value is since you didn't say but that would be the idea.
    - Gone; this is another shit forum with children as administrators. Not worth contributing to.

  10. #10
    umutyeniyurt's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    thank you <3

    ---------- Post added at 10:36 AM ---------- Previous post was at 10:32 AM ----------

    thanks thanks thanks thanks thanks thanks

    ---------- Post added at 10:58 AM ---------- Previous post was at 10:36 AM ----------

    please edit your message pls

Similar Threads

  1. How to use Pointer + Offset in C#? Question in title ^_^
    By _PuRe.LucK* in forum Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    Replies: 22
    Last Post: 06-25-2013, 11:23 PM
  2. [Help] How to use Pointer + Offset in C#?
    By _PuRe.LucK* in forum C# Programming
    Replies: 10
    Last Post: 06-16-2013, 05:41 AM
  3. [Help Request] How to use OllyDGB to find offsets
    By super*eagle in forum Crossfire Coding Help & Discussion
    Replies: 1
    Last Post: 02-22-2013, 12:07 PM
  4. [Help] how to find offset in cshell using Olllly in cf ph?
    By GameMaster025 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 05-26-2012, 11:16 PM
  5. Replies: 5
    Last Post: 07-22-2009, 04:26 PM