Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 33
  1. #16
    CoderCf's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    143
    Reputation
    10
    Thanks
    9
    0xAF0 is it for EU

  2. #17
    JamesRo's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    1,872
    Reputation
    182
    Thanks
    17,852
    My Mood
    Happy
    Quote Originally Posted by rabir007 View Post


    If it is what i think it is, i would make Scope-Hack / Zoom Hack / Whatever we call it...
    Like an "eagle vision hack"?

  3. #18
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    @giniyat101 if i tell you that M-Motion.ltb is the model of the green mutant... how would you explain that it is all over the log ? :/

  4. #19
    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 JamesRo View Post
    Like an "eagle vision hack"?
    Zoom-In hack...







  5. #20
    giniyat101's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Not telling.
    Posts
    1,935
    Reputation
    130
    Thanks
    1,380
    My Mood
    Dead
    Quote Originally Posted by kmanev073 View Post
    @giniyat101 if i tell you that M-Motion.ltb is the model of the green mutant... how would you explain that it is all over the log ? :/
    this doesnt make sense,


     



    [img]https://i43.photobucke*****m/albums/e367/DeteSting/Steam-update.gif[/img]

  6. #21
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    Quote Originally Posted by giniyat101 View Post
    this doesnt make sense,
    yes :/ sometimes i dont understand the engine xD

  7. #22
    baek_25's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    5
    Me neither

  8. #23
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    @giniyat101 i see in the log ZoomAction for the snipers can you tell me the offsets and how to find them ?

  9. #24
    giniyat101's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Not telling.
    Posts
    1,935
    Reputation
    130
    Thanks
    1,380
    My Mood
    Dead
    Quote Originally Posted by kmanev073 View Post
    @giniyat101 i see in the log ZoomAction for the snipers can you tell me the offsets and how to find them ?
    wep+0x3940 , type : int
    wep+0x3944 , type : float
    wep+0x3948 , type : float
    wep+0x3918+y*4 , type : float (where y is a value of 0 to the first int value)
    if you check the log closely you can see :
    ZoomAction = 2,500,500,1.0,2.5 (AUG A1)
    where 2 is stored in wep+0x3940
    500 in wep+0x3944
    500 in wep+0x3948
    1.0 and 2.5 in wep+0x3918+y*4 where y is 0, 1 (use for int y=0; y<wep_3940; y++)

    but for M700 there is
    ZoomAction = 3,50,50,1.0,3.1,10.0
    meaning 3 is wep+0x3940
    50 is wep+0x3944
    50 is wep+0x3948
    1.0, 3.1 and 10.0 are wep+0x3918+y*4 where y is 0, 1, 2 (use for int y=0; y<wep_3940; y++)

    got it?

    anyway all offsets are listed under ZoomAction string
    tell me when you find something useful in it


     



    [img]https://i43.photobucke*****m/albums/e367/DeteSting/Steam-update.gif[/img]

  10. #25
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    Quote Originally Posted by giniyat101 View Post
    wep+0x3940 , type : int
    wep+0x3944 , type : float
    wep+0x3948 , type : float
    wep+0x3918+y*4 , type : float (where y is a value of 0 to the first int value)
    if you check the log closely you can see :
    ZoomAction = 2,500,500,1.0,2.5 (AUG A1)
    where 2 is stored in wep+0x3940
    500 in wep+0x3944
    500 in wep+0x3948
    1.0 and 2.5 in wep+0x3918+y*4 where y is 0, 1 (use for int y=0; y<wep_3940; y++)

    but for M700 there is
    ZoomAction = 3,50,50,1.0,3.1,10.0
    meaning 3 is wep+0x3940
    50 is wep+0x3944
    50 is wep+0x3948
    1.0, 3.1 and 10.0 are wep+0x3918+y*4 where y is 0, 1, 2 (use for int y=0; y<wep_3940; y++)

    got it?

    anyway all offsets are listed under ZoomAction string
    tell me when you find something useful in it
    thanks man

    ---------- Post added at 11:52 AM ---------- Previous post was at 11:50 AM ----------

    Quote Originally Posted by giniyat101 View Post
    wep+0x3940 , type : int
    wep+0x3944 , type : float
    wep+0x3948 , type : float
    wep+0x3918+y*4 , type : float (where y is a value of 0 to the first int value)
    if you check the log closely you can see :
    ZoomAction = 2,500,500,1.0,2.5 (AUG A1)
    where 2 is stored in wep+0x3940
    500 in wep+0x3944
    500 in wep+0x3948
    1.0 and 2.5 in wep+0x3918+y*4 where y is 0, 1 (use for int y=0; y<wep_3940; y++)

    but for M700 there is
    ZoomAction = 3,50,50,1.0,3.1,10.0
    meaning 3 is wep+0x3940
    50 is wep+0x3944
    50 is wep+0x3948
    1.0, 3.1 and 10.0 are wep+0x3918+y*4 where y is 0, 1, 2 (use for int y=0; y<wep_3940; y++)

    got it?

    anyway all offsets are listed under ZoomAction string
    tell me when you find something useful in it
    i think this is the scope hack
    bcs only right click attributes and zoom mode modding didnt allow me to shoot or have scope there is something else...
    and what is "ZoomTargetType" ? i got offset but iea what this is ?

  11. #26
    DarkPladin's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    (◔̯◔)
    Posts
    365
    Reputation
    10
    Thanks
    610
    My Mood
    Devilish
    MaxOneShotAndSize , is that what i think is it !!!!!
    Can Be Usedd Wellllllllllll !!!!!
    But i think there is no offset for it !!
    maybe ! !~~

    ---------- Post added at 07:16 AM ---------- Previous post was at 07:14 AM ----------

    and what is AmmoPrice !!!!
    what are that strange Strings !

  12. #27
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    Quote Originally Posted by DarkPladin View Post
    MaxOneShotAndSize , is that what i think is it !!!!!
    Can Be Usedd Wellllllllllll !!!!!
    But i think there is no offset for it !!
    maybe ! !~~

    ---------- Post added at 07:16 AM ---------- Previous post was at 07:14 AM ----------

    and what is AmmoPrice !!!!
    what are that strange Strings !
    ammo price... this is for one mode that is still not turned on in CF NA :P and no it is not "MaxOneShotAnd"

  13. #28
    DarkPladin's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    (◔̯◔)
    Posts
    365
    Reputation
    10
    Thanks
    610
    My Mood
    Devilish
    Quote Originally Posted by kmanev073 View Post
    ammo price... this is for one mode that is still not turned on in CF NA :P and no it is not "MaxOneShotAnd"
    i just searched for them modes , and there is one strange snow base , isn't it !?
    and is maxoneshot , is the number of max players can i kill with one shot , like in farm, one shot kill more than one with a headshot !!!
    may i dump !?!?! , and size , isn't the size of the bullet , can it be used !?

  14. #29
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    Quote Originally Posted by DarkPladin View Post
    i just searched for them modes , and there is one strange snow base , isn't it !?
    and is maxoneshot , is the number of max players can i kill with one shot , like in farm, one shot kill more than one with a headshot !!!
    may i dump !?!?! , and size , isn't the size of the bullet , can it be used !?
    well idk and i dont think so

  15. #30
    JamesRo's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    1,872
    Reputation
    182
    Thanks
    17,852
    My Mood
    Happy
    Quote Originally Posted by DarkPladin View Post
    MaxOneShotAndSize , is that what i think is it !!!!!
    Can Be Usedd Wellllllllllll !!!!!
    But i think there is no offset for it !!
    maybe ! !~~

    ---------- Post added at 07:16 AM ---------- Previous post was at 07:14 AM ----------

    and what is AmmoPrice !!!!
    what are that strange Strings !
    Ammo price is for Elite mode(released only in CF Korea and Japan).

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Release] Crossfire Weapon Log After New Patch
    By Ryuesi in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 34
    Last Post: 02-14-2013, 10:38 AM
  2. [Release] CrossFire Default Log In Wallpaper For CrossFire Philippines
    By wfefwefwef in forum CrossFire Mods & Rez Modding
    Replies: 9
    Last Post: 09-10-2012, 04:03 AM
  3. [Request] CROSSFIRE PHILIPPINES LOG-IN MOD
    By Lakisagatas in forum CrossFire Mods & Rez Modding
    Replies: 1
    Last Post: 06-03-2012, 08:16 AM
  4. Crossfire Weapon Log
    By Ryuesi in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 3
    Last Post: 01-10-2012, 10:54 PM
  5. [Release] Crossfire Christmas Log-in BACKGROUND
    By acedia in forum CrossFire Mods & Rez Modding
    Replies: 27
    Last Post: 12-19-2010, 04:28 AM