Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored

    About Shearcing Strings

    So finally, i have a Bypass for Cf Eu, and can find the Strings with CE but
    when i shearch a string, like "CharcterHiddenWalkAlpha" in the CE string finder, i got a value for about "0066456C" (not excatly this)
    So i was curious, if it works, added into code list, and Pointer scanned, but i didnt got the BasicPlayerInfo + CharacterWalkAlpha...

    I reversed the correct pointer + offset and got a "00754156" (about, not excatly), the essence, that not the same...

    So if i find the "0066456C", how can i find the correct pointer and offset for BasicPlayerInfo + CharacterWalkAlpha...

    Dont give me the right pointer and offset, i have them too i want to know, how to find them...







  2. #2
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    Where the hell do you find 0066456C

  3. #3
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by -BiESi View Post
    Where the hell do you find 0066456C
    Here:








  4. #4
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    It's More Easy To Find Pointer And Addys With Olly
    Crossfire Projects
    Made 21 Feature (Memory Hack)
    Respect List
    @ComboDance
    @mamo007
    @GaaD
    @Olwayy
    @Biesi
    @iSmexy
    @derh.acker
    @Brimir
    @steveroseik
    @Hero
    @Temperrr
    @Rullez
    PressIF I Helped

  5. #5
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by sobasoba13 View Post
    It's More Easy To Find Pointer And Addys With Olly
    I know, i learnt how to find the strings.. But...
    So i shearched a string "JumpVelocity"

    I got this:
    Code:
    MOV ECX,DWORD PTR SS:[ESP+30]
    MOV EDX,DWORD PTR DS:[ECX+EDI*4]
    PUSH CShell_U.103E7B6C                   ;  ASCII "JumpVelocity"
    I looked before, and the ECX is the BasicPlayerInfo:
    Code:
    MOV ECX,DWORD PTR DS:[10CE1710]
    So the Jump Velocity is: BasicPlayerInfo + 30 ?

    I'm new with Olly :/

    Or the JumpVelocity is:

    (BasicPlayerInfo+30) + (i * 4 )

    I ran the Process, and there was a Compare EDI, EAX (or EAX,EDI)
    And the EAX was 18, so the loop is 18, right ?

    Last edited by rabir007; 01-05-2013 at 06:25 AM.







  6. #6
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    I Will Find For You But To Know the addy you have to learn assembly lang
    Crossfire Projects
    Made 21 Feature (Memory Hack)
    Respect List
    @ComboDance
    @mamo007
    @GaaD
    @Olwayy
    @Biesi
    @iSmexy
    @derh.acker
    @Brimir
    @steveroseik
    @Hero
    @Temperrr
    @Rullez
    PressIF I Helped

  7. #7
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    Something like this

    Last edited by Biesi; 01-05-2013 at 06:40 AM.

  8. #8
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by -BiESi View Post
    Something like this

    Its the Ghost Hack
    There is tons of Numbers... Where do i know, wich is the pointer, and wich is the offset i need ?

    I watched over offsets i already know, and detected that the Offset's form every time is [Register + Register + Offset]


    ---------- Post added at 02:52 PM ---------- Previous post was at 02:51 PM ----------

    Quote Originally Posted by sobasoba13 View Post
    I Will Find For You But To Know the addy you have to learn assembly lang
    Please dont, i want to learn how to find myself... Thats the point of this thread..:

    Or maybe, i found something like BasicPlayerInfo + 64 but Cf exit when i want to juon into a match...
    when i use: BasicPlayerInfo + 64 = 0;

    Last edited by rabir007; 01-05-2013 at 06:55 AM.







  9. #9
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    Okay i will tell you
    but i will eat now
    Crossfire Projects
    Made 21 Feature (Memory Hack)
    Respect List
    @ComboDance
    @mamo007
    @GaaD
    @Olwayy
    @Biesi
    @iSmexy
    @derh.acker
    @Brimir
    @steveroseik
    @Hero
    @Temperrr
    @Rullez
    PressIF I Helped

  10. #10
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    Quote Originally Posted by rabir007 View Post
    Where do i know, wich is the pointer, and wich is the offset i need ?
    Have a look on what and how they calculate

  11. #11
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by -BiESi View Post


    Have a look on what and how they calculate
    So if i'm Right

    Code:
    MOV ECX,DWORD PTR DS:[10CE1710] //Basic player Info
    ADD ESP,4
    IMUL EAX,EAX,0A8
    FSTP DWORD PTR DS:[EAX+ECX+2C] //Possible JumpVelocity
    Code:
    *(float*)(pBasicPlayerInfo + 0x2C) = 9999;
    And jump the same height, maybe this value dont have effect in-game...







  12. #12
    dakr54's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    396
    Reputation
    16
    Thanks
    669
    In memory you were supposed to go to 0051C95e

    if u did it correctly it would've looked like this:


  13. #13
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by dakr54 View Post
    In memory you were supposed to go to 0051C95e

    if u did it correctly it would've looked like this:

    Is started using OllyDbg... a bit easier....







  14. #14
    DarkPladin's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    (◔̯◔)
    Posts
    365
    Reputation
    10
    Thanks
    610
    My Mood
    Devilish
    @dakr54
    @rabir007
    how can u open the CE Without Detected !!

  15. #15
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by DarkPladin View Post
    @dakr54
    @rabir007
    how can u open the CE Without Detected !!
    Detected Xtrap Bypass -> Start Cf, dont Login -> Start CE...







Page 1 of 2 12 LastLast

Similar Threads

  1. about fucking stupid strings
    By giniyat101 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 25
    Last Post: 08-17-2012, 01:37 AM
  2. [Help] About Olly text strings
    By moathebest in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 11
    Last Post: 11-24-2011, 03:39 PM
  3. learning about strings
    By CrypTology- in forum C++/C Programming
    Replies: 6
    Last Post: 02-06-2011, 12:37 PM
  4. Anyone here know about rakion
    By terence in forum General Gaming
    Replies: 14
    Last Post: 01-03-2006, 11:49 PM
  5. Connection About for Annomalation in Game
    By asdasd in forum WarRock - International Hacks
    Replies: 7
    Last Post: 12-30-2005, 08:17 PM