Thread: AutoUpdate

Results 1 to 14 of 14
  1. #1
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed

    Cool AutoUpdate



    Sorry For This Post But I Was Thinking in it many times long time ago
    But IF We are going to make a auto update can we use FindPattern for auto update ?????
    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

  2. #2
    Zacherl's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    150
    Reputation
    10
    Thanks
    42
    My Mood
    Aggressive
    You can probably update most of your offsets using FindPattern(), but you cant auto update your structs this way.

  3. #3
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    mmmmmm so is there anyway to auto update structs ?
    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

  4. #4
    V I's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Jewish land
    Posts
    1,440
    Reputation
    272
    Thanks
    2,442
    My Mood
    Aggressive
    Quote Originally Posted by sobasoba13 View Post
    mmmmmm so is there anyway to auto update structs ?
    The problem is you don't even know why to use Classes

  5. #5
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    Quote Originally Posted by MC567 View Post


    The problem is you don't even know why to use Classes
    Yes i don't know much about classes and that what i am working about
    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

  6. #6
    Zacherl's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    150
    Reputation
    10
    Thanks
    42
    My Mood
    Aggressive
    Quote Originally Posted by sobasoba13 View Post
    mmmmmm so is there anyway to auto update structs ?
    The only way i know is simply not to use any hardcoded struct. But that will force you to address all the struct members with seperate offsets. I do that for crossfires weapon list struct, too, simply because i just need a few attributes and im way too lazy to rebuild the whole struct everytime it got changed.

    Im not a big fan of pattern based auto updates in anyways, because they can be very inconsistent and it will be a pain in ur ass to find wrong offsets if your hack just crashes. Better write some kind of pattern based "address logger" that gets you the new offsets after a patch. This way you can always double check them manually before using them in your actual hack.

  7. #7
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    Quote Originally Posted by Zacherl View Post
    The only way i know is simply not to use any hardcoded struct. But that will force you to address all the struct members with seperate offsets. I do that for crossfires weapon list struct, too, simply because i just need a few attributes and im way too lazy to rebuild the whole struct everytime it got changed.

    Im not a big fan of pattern based auto updates in anyways, because they can be very inconsistent and it will be a pain in ur ass to find wrong offsets if your hack just crashes. Better write some kind of pattern based "address logger" that gets you the new offsets after a patch. This way you can always double check them manually before using them in your actual hack.
    But I think address logger is using findpattern to get the addys and the pointers !!!
    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

  8. #8
    Zacherl's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    150
    Reputation
    10
    Thanks
    42
    My Mood
    Aggressive
    Quote Originally Posted by sobasoba13 View Post
    But I think address logger is using findpattern to get the addys and the pointers !!!
    Thats correct. The difference is, that the address logger ist not included in the hack dll itself. If you distribute a hack with inbuild pattern based auto update, some of the patterns will fail at some point (due to big changes in the game eg). The address logger on the other hand, is just a little help tool for yourself. You can "try" to find the new offsets, but you can always manually correct them, if they turn out wrong while testing. This way the actually distributed hack will 100% work for the game version you are releasing it for.

    In my hack i went even further and added a hash check for the crossfire.exe and cshell.dll. If one of the hashs change, i display an error message and tell any user to download the newest version.

  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
    Quote Originally Posted by Zacherl View Post
    Thats correct. The difference is, that the address logger ist not included in the hack dll itself. If you distribute a hack with inbuild pattern based auto update, some of the patterns will fail at some point (due to big changes in the game eg). The address logger on the other hand, is just a little help tool for yourself. You can "try" to find the new offsets, but you can always manually correct them, if they turn out wrong while testing. This way the actually distributed hack will 100% work for the game version you are releasing it for.

    In my hack i went even further and added a hash check for the crossfire.exe and cshell.dll. If one of the hashs change, i display an error message and tell any user to download the newest version.
    mmmmm okay i will try it cuz i tryed so much to create an addy logger but fails !!!!
    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
    Would still get detected by xTrap

  11. #11
    Zacherl's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    150
    Reputation
    10
    Thanks
    42
    My Mood
    Aggressive
    Quote Originally Posted by -BiESi View Post
    Would still get detected by xTrap
    It wont, if you do it the right way.

  12. The Following User Says Thank You to Zacherl For This Useful Post:

    dakr54 (01-07-2013)

  13. #12
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    Quote Originally Posted by -BiESi View Post
    Would still get detected by xTrap
    But you won't have to update the hack

  14. #13
    dakr54's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    396
    Reputation
    16
    Thanks
    669
    i'll make a pattern scan tutorial

  15. #14
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    Quote Originally Posted by dakr54 View Post
    i'll make a pattern scan tutorial
    Ty it's gonna help me alot
    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

Similar Threads

  1. FindOffset (AutoUpdate)
    By FreeCode? in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 29
    Last Post: 01-14-2012, 10:46 PM
  2. [Release] OPERATION 7 NETGAME REV 1.3 FULL RELEASE WITH AUTOUPDATE [June 21, 2011]
    By zhaoyun333 in forum Operation 7 Hacks
    Replies: 48
    Last Post: 07-06-2011, 05:05 PM
  3. Crysis 2 Original v1.4 exe for autoupdate!
    By MaxMaxMa in forum Crysis 2 Help
    Replies: 1
    Last Post: 06-02-2011, 07:13 AM
  4. [Release] Crysis 2 MultiHack with AutoUpdate
    By master131 in forum Crysis 2 Hacks / Cheats
    Replies: 0
    Last Post: 04-25-2011, 11:09 PM