Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 64
  1. #1
    giniyat101's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Not telling.
    Posts
    1,935
    Reputation
    130
    Thanks
    1,380
    My Mood
    Dead

    no grenade hack [source included]

    this is not mine

    all credits goes to LionMan

    source:
    Code:
    #include <windows.h>
    #include <math.h>
    
    void hello()
    {
     DWORD cshell = (DWORD)(GetModuleHandleA("CShell.dll"));
     DWORD weapon = *(DWORD*)(cshell+0xAAC3D0);
     DWORD ltplay = *(DWORD*)(cshell+0x3547B0);
     if(ltplay!=0)
     {
    	
    
     }
    
    	 if(weapon!=0)
    	 {
    	 for(int i=0;i<601;i++)
    		 {
    		 unsigned long weapons = *(unsigned long*)(weapon+(i*4));
    		 if(weapons!=0)
    			 {
    				 *(float*)(weapons+0x263C)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2640)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2644)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2648)=(float)HUGE_VAL;
    				 *(BYTE *)(weapons+0x264C)=(BYTE )HUGE_VAL;
    				 *(BYTE *)(weapons+0x2651)=(BYTE )HUGE_VAL;
    				 *(float*)(weapons+0x2654)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2658)=(float)HUGE_VAL;
    			 }
    		 }
    	 }
    }
    
    int run()
    {
    hello();
    return true;
    }
    
    void _stdcall DllMain(HMODULE hDll, unsigned long dwReason, LPVOID lpReserved)
    {
    	if (GetModuleHandleA("ClientFx.Fxd"))
    		run();
    }
    LionMan.rar - Jotti's malware scan
    https://www.virustotal.com/file/530d...is/1334248448/


     



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

  2. The Following 16 Users Say Thank You to giniyat101 For This Useful Post:

    -iFaDy..* (04-13-2012),ahmedell (04-13-2012),couseallweknow (03-21-2017),[MPGH]Dave84311 (04-23-2012),DOOP (04-14-2012),georgesas (07-17-2012),guerrerous (11-17-2012),jakaaaa (05-01-2012),jamalek (04-28-2012),jeroldcamacho (09-16-2014),legionPL10 (04-29-2012),lucasheer (04-12-2012),nhoclesnar (04-13-2012),pannpapa (05-02-2012),stefanus (04-29-2012),Vincent Dominguez (04-17-2012)

  3. #31
    mslol's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Olly
    Posts
    1,367
    Reputation
    13
    Thanks
    376
    My Mood
    Yeehaw
    good job man i like it

    ---------- Post added at 03:48 AM ---------- Previous post was at 03:46 AM ----------

    Quote Originally Posted by leopoldo614 View Post
    Lol i think this is just no grenade damage.
    well its mor then that . its no smok no flash and no graned damg nice hack btw i just inject it and works great

  4. The Following User Says Thank You to mslol For This Useful Post:

    dakr54 (04-13-2012)

  5. #32
    Genkidesu's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    Thanh Hóa
    Posts
    187
    Reputation
    30
    Thanks
    2,786
    My Mood
    Bored
    Quote Originally Posted by xmen View Post
    @giniyat101

    Could I know what is the string name of this:

    Code:
    DWORD ltplay = *(DWORD*)(cshell+0x3547B0);
    And the string names of these offsets:

    Code:
                                     *(float*)(weapons+0x263C)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2640)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2644)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2648)=(float)HUGE_VAL;
    				 *(BYTE *)(weapons+0x264C)=(BYTE )HUGE_VAL;
    				 *(BYTE *)(weapons+0x2651)=(BYTE )HUGE_VAL;
    				 *(float*)(weapons+0x2654)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2658)=(float)HUGE_VAL;
    I want to test them in PH
    @xmen learn ASM... it will help u a lot to find the addies without help of the strings, anyway here PH version (took me 5 mins only...):

    Code:
    DWORD ltplay = *(DWORD*)(cshell+0x3599B0);
    
    *(float*)(weapons+0x25E8)=(float)HUGE_VAL;
    *(float*)(weapons+0x25EC)=(float)HUGE_VAL;
    *(float*)(weapons+0x25F0)=(float)HUGE_VAL;
    *(float*)(weapons+0x25F4)=(float)HUGE_VAL;
    *(BYTE*)(weapons+0x251C)=(BYTE )HUGE_VAL;
    *(BYTE*)(weapons+0x25FD)=(BYTE )HUGE_VAL;
    *(float*)(weapons+0x2600)=(float)HUGE_VAL;
    *(float*)(weapons+0x2604)=(float)HUGE_VAL;
    edit: here i found the strings "BoomType", "BoomDurationDamage", "SideEffectDamage".
    Last edited by Genkidesu; 04-13-2012 at 05:38 AM.

  6. The Following 3 Users Say Thank You to Genkidesu For This Useful Post:

    -iFaDy..* (04-13-2012),dakr54 (04-13-2012),Ryuzaki™ (04-13-2012)

  7. #33
    Ryuzaki™'s Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    At my headquarter, catching KIRA
    Posts
    1,671
    Reputation
    41
    Thanks
    6,252
    My Mood
    Lurking
    Quote Originally Posted by Genkidesu View Post
    @xmen learn ASM... it will help u a lot to find the addies without help of the strings, anyway here PH version (took me 5 mins only...):

    Code:
    DWORD ltplay = *(DWORD*)(cshell+0x3599B0);
    
    *(float*)(weapons+0x25E8)=(float)HUGE_VAL;
    *(float*)(weapons+0x25EC)=(float)HUGE_VAL;
    *(float*)(weapons+0x25F0)=(float)HUGE_VAL;
    *(float*)(weapons+0x25F4)=(float)HUGE_VAL;
    *(BYTE*)(weapons+0x251C)=(BYTE )HUGE_VAL;
    *(BYTE*)(weapons+0x25FD)=(BYTE )HUGE_VAL;
    *(float*)(weapons+0x2600)=(float)HUGE_VAL;
    *(float*)(weapons+0x2604)=(float)HUGE_VAL;
    edit: here i found the strings "BoomType", "BoomDurationDamage", "SideEffectDamage".

    Thanks for that, I really dunno ASM, but I will study.

    Edit:
    I think 0x251C is wrong?
    View KHdngx.png on ScreenSnapr
    it should be 0x25FC I think

    And last one question, about the ltplay? how could I find it? (sorry noob question, it is my first time to encounter that pointer)
    Last edited by Ryuzaki™; 04-13-2012 at 06:45 AM.



  8. #34
    -iFaDy..*'s Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    C++/Mpgh.net/CF/devenv.exe
    Posts
    201
    Reputation
    22
    Thanks
    87
    My Mood
    Cool
    Really Awesome @giniyat101 - Thanked For The Source.

    ---------- Post added at 03:23 PM ---------- Previous post was at 03:21 PM ----------

    Quote Originally Posted by xmen View Post
    Thanks for that, I really dunno ASM, but I will study.

    Edit:
    I think 0x251C is wrong?
    View KHdngx.png on ScreenSnapr
    it should be 0x25FC I think

    And last one question, about the ltplay? how could I find it? (sorry noob question, it is my first time to encounter that pointer)
    Maybe its LTClient - Really Dunno.
    Need Any Help in C++/CrossFire? Just Pm me.

    My FB : Www.FaceBook.com/FaDiAtefAhlawy

    My Yahoo : Dodo_CrazyChat@yahoo.com

    My Hotmail : Dodo_CrazyChat@hotmail.com

  9. #35
    Swag's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Netherlands
    Posts
    1,619
    Reputation
    19
    Thanks
    1,865
    My Mood
    Amused
    Nice job but tell how to use please..

  10. #36
    mohamed09's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    91
    Reputation
    10
    Thanks
    2
    My Mood
    In Love
    Quote Originally Posted by Foreal? View Post


    This is a C++ source i'm guessing it makes grenades have no damage towards you
    kkk thanks
    successed sells/buys


    ---/--- warhawk: i went first and success

  11. #37
    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 xmen View Post
    @giniyat101

    Could I know what is the string name of this:

    Code:
    DWORD ltplay = *(DWORD*)(cshell+0x3547B0);
    And the string names of these offsets:

    Code:
                                     *(float*)(weapons+0x263C)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2640)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2644)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2648)=(float)HUGE_VAL;
    				 *(BYTE *)(weapons+0x264C)=(BYTE )HUGE_VAL;
    				 *(BYTE *)(weapons+0x2651)=(BYTE )HUGE_VAL;
    				 *(float*)(weapons+0x2654)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2658)=(float)HUGE_VAL;
    I want to test them in PH
    idk "it is not mine" is really obvious


     



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

  12. #38
    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 is not mine

    all credits goes to LionMan

    source:
    Code:
    #include <windows.h>
    #include <math.h>
    
    void hello()
    {
     DWORD cshell = (DWORD)(GetModuleHandleA("CShell.dll"));
     DWORD weapon = *(DWORD*)(cshell+0xAAC3D0);
     DWORD ltplay = *(DWORD*)(cshell+0x3547B0);
     if(ltplay!=0)
     {
    	
    
     }
    
    	 if(weapon!=0)
    	 {
    	 for(int i=0;i<601;i++)
    		 {
    		 unsigned long weapons = *(unsigned long*)(weapon+(i*4));
    		 if(weapons!=0)
    			 {
    				 *(float*)(weapons+0x263C)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2640)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2644)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2648)=(float)HUGE_VAL;
    				 *(BYTE *)(weapons+0x264C)=(BYTE )HUGE_VAL;
    				 *(BYTE *)(weapons+0x2651)=(BYTE )HUGE_VAL;
    				 *(float*)(weapons+0x2654)=(float)HUGE_VAL;
    				 *(float*)(weapons+0x2658)=(float)HUGE_VAL;
    			 }
    		 }
    	 }
    }
    
    int run()
    {
    hello();
    return true;
    }
    
    void _stdcall DllMain(HMODULE hDll, unsigned long dwReason, LPVOID lpReserved)
    {
    	if (GetModuleHandleA("ClientFx.Fxd"))
    		run();
    }
    LionMan.rar - Jotti's malware scan
    https://www.virustotal.com/file/530d...is/1334248448/
    dude it is a BUG -_- I make this witouth knowing why i t happens i even dont see the dropped weapons... IT IS A BUG

  13. #39
    dakr54's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    396
    Reputation
    16
    Thanks
    669
    Quote Originally Posted by kmanev073 View Post
    dude it is a BUG -_- I make this witouth knowing why i t happens i even dont see the dropped weapons... IT IS A BUG
    How is it a bug if you directly modify the memory?

  14. #40
    mhmod1's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    3
    My Mood
    Yeehaw
    i agree with you

  15. #41
    Ryuzaki™'s Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    At my headquarter, catching KIRA
    Posts
    1,671
    Reputation
    41
    Thanks
    6,252
    My Mood
    Lurking
    Quote Originally Posted by giniyat101 View Post
    idk "it is not mine" is really obvious
    Thanks for replying, I already know the strings, thanks to @Genkidesu even he did not mention all of them, I found the missing strings.



  16. #42
    -iFaDy..*'s Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    C++/Mpgh.net/CF/devenv.exe
    Posts
    201
    Reputation
    22
    Thanks
    87
    My Mood
    Cool
    Quote Originally Posted by Swag View Post
    Nice job but tell how to use please..
    its a full UD Base For The No Grenade/NoFlash/NoSmoke .. Just C+P and debug xDD and the string Are : "BoomType", "BoomDurationDamage", "SideEffectDamage". ,, when u throw a bomb u cant see it so no dmg will affect u.
    Need Any Help in C++/CrossFire? Just Pm me.

    My FB : Www.FaceBook.com/FaDiAtefAhlawy

    My Yahoo : Dodo_CrazyChat@yahoo.com

    My Hotmail : Dodo_CrazyChat@hotmail.com

  17. #43
    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 dakr54 View Post
    How is it a bug if you directly modify the memory?
    gforce had a bugged stw this way too


     



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

  18. #44
    Sylvestermido's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    17
    Reputation
    9
    Thanks
    2
    My Mood
    In Love
    Goood Jop

  19. #45
    S]n!ck-_*'s Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Water less LAND
    Posts
    1,066
    Reputation
    51
    Thanks
    45
    My Mood
    Sad
    Nice man helped me :P

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. Wolfteam red grenade hack
    By NetNavi in forum WolfTeam General
    Replies: 25
    Last Post: 12-24-2008, 03:31 AM
  2. [VB.NET 08] Diamondo25's WarRock Hack source
    By diamondo25 in forum Visual Basic Programming
    Replies: 8
    Last Post: 04-24-2008, 09:21 AM
  3. Need help with red grenade hack
    By Niekjes in forum WolfTeam General
    Replies: 24
    Last Post: 03-15-2008, 12:41 AM
  4. Red Grenade Hack**Request-
    By calvin0512 in forum WolfTeam General
    Replies: 4
    Last Post: 03-02-2008, 12:01 AM
  5. [Request/Search] OPK (Grenade Hack)
    By Aro in forum WarRock - International Hacks
    Replies: 14
    Last Post: 05-29-2007, 01:39 PM