Thread: Unlimited Ammo

Page 5 of 7 FirstFirst ... 34567 LastLast
Results 61 to 75 of 91
  1. #61
    Elguet's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Ch40zz-C0d3r View Post
    You hooked wrong address....
    Lmfao, yeah thats true, fixed it. Its working fine now. Thanks

  2. #62
    Shavery's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Elguet View Post
    Lmfao, yeah thats true, fixed it. Its working fine now. Thanks
    I hooked it fine and can get all the packet data and everything.

    Except I crash when I return.

    Code:
    typedef LTRESULT (__cdecl* oSendToServer) (ILTMessage_Read* Message, unsigned int flags);
    oSendToServer pSendToServer = (oSendToServer)ADR_SendToServer;
    
    
    return pSendToServer(pMsg, flags); //This is where I crash...

  3. #63
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Are you serious?
    Your hooking @ engine and call it in your hook?
    Thats an infinite loop...
    Learn what hooking does and how it looks in asm.

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  4. #64
    Shavery's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Are you serious?
    Your hooking @ engine and call it in your hook?
    Thats an infinite loop...
    Learn what hooking does and how it looks in asm.
    I'm not an idiot, however I obviously mis-communicated how I did this. I modified the vTable pointer to the function, pSendToServer points to the original function in memory. There is no loop here.

    Edit:
    After some testing I have confirmed there is no loop. In fact some packets push all the way through, anywhere between 3 and 20 packets go through fine and then it crashes randomly. Maybe it's just detected?
    Last edited by Shavery; 01-15-2013 at 02:33 AM.

  5. #65
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    Quote Originally Posted by Shavery View Post
    I'm not an idiot, however I obviously mis-communicated how I did this. I modified the vTable pointer to the function, pSendToServer points to the original function in memory. There is no loop here.

    Edit:
    After some testing I have confirmed there is no loop. In fact some packets push all the way through, anywhere between 3 and 20 packets go through fine and then it crashes randomly. Maybe it's just detected?
    was talking to flengo earlier, he said that certain ways of hooking it are patched/detected and you need to bypass

    commando: You're probably the best non-coder coder I know LOL


  6. #66
    Shavery's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by supercarz1991 View Post
    was talking to flengo earlier, he said that certain ways of hooking it are patched/detected and you need to bypass
    Yeah the way I was doing it is detected, I know what to do now! If only they didn't take 7 hours for maintenance...
    Last edited by Shavery; 01-16-2013 at 03:07 PM.

  7. #67
    coderstrikeagain's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    3
    There is no other way to get it from not crashing. You have to have HS Bypass ( New Method ) HS Drivers need to get disabled.

  8. #68
    BadBurrito's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    32
    Reputation
    21
    Thanks
    226
    It is quite easy to hook STS, it is detected if you hook anything in engine.exe but you can hook the call in CShell.dll... just do a normal hook (in engine e.g.) and then look at *(DWORD*)(ebp+4) it is the addy of the instruction after the call... then you will see that it is called in CShell, there you can hook and change the call, a easy way is to modify the eax register ...so I am playing EU but for NA it should work too I think, no need of a bypass at all

  9. The Following User Says Thank You to BadBurrito For This Useful Post:

    [MPGH]Flengo (01-20-2013)

  10. #69
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Quote Originally Posted by BadBurrito View Post
    It is quite easy to hook STS, it is detected if you hook anything in engine.exe but you can hook the call in CShell.dll... just do a normal hook (in engine e.g.) and then look at *(DWORD*)(ebp+4) it is the addy of the instruction after the call... then you will see that it is called in CShell, there you can hook and change the call, a easy way is to modify the eax register ...so I am playing EU but for NA it should work too I think, no need of a bypass at all
    Isnt HS scanning engine.exe AND cshell.dll?

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  11. #70
    BadBurrito's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    32
    Reputation
    21
    Thanks
    226
    In EU it is scanning just Engine and I think it is the same version... in the past they were scanning CShell when you entered a room and for a short period of time also when you respawn (back then I released a bypass for that ) but they removed these checks completely, at least for CA EU

  12. #71
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,179
    My Mood
    Inspired
    Quote Originally Posted by BadBurrito View Post
    In EU it is scanning just Engine and I think it is the same version... in the past they were scanning CShell when you entered a room and for a short period of time also when you respawn (back then I released a bypass for that ) but they removed these checks completely, at least for CA EU
    Those checks have also been removed on Combat Arms NA.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  13. The Following User Says Thank You to Flengo For This Useful Post:

    BadBurrito (01-20-2013)

  14. #72
    Code_over_Pussy's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    67
    Reputation
    10
    Thanks
    9
    My Mood
    Amused
    Quote Originally Posted by Progamador.BR View Post
    I did reverse engineering on this game and find another way to make infinite ammo. but I prefer to keep secret. hehe
    funny how people like this individual say shit like " hey i found it another way so psh i've always had this in my hack no big deal that you skids have it now " funny as shit when people talk shit when they don't even have videos of their unlimited ammo < _ <

  15. The Following User Says Thank You to Code_over_Pussy For This Useful Post:

    -Bl00d- (01-23-2013)

  16. #73
    -Bl00d-'s Avatar
    Join Date
    Sep 2011
    Gender
    female
    Location
    Imma girl what about it?
    Posts
    481
    Reputation
    10
    Thanks
    53
    My Mood
    Twisted
    Quote Originally Posted by Code_over_Pussy View Post
    funny how people like this individual say shit like " hey i found it another way so psh i've always had this in my hack no big deal that you skids have it now " funny as shit when people talk shit when they don't even have videos of their unlimited ammo < _ <
    i posted a video.
    Successful buys: 20
    Successful sells: 4
    Successful trades: 9
    Scammed: 4

     
    https://www.mpgh.net/forum/490-vouches/560562-vouches.html

    ^^^^^^^^^^^
    vouche for me?

  17. #74
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Quote Originally Posted by -Bl00d- View Post

    i posted a video.
    Yeah which was a fake...

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  18. The Following User Says Thank You to Ch40zz-C0d3r For This Useful Post:

    arun823 (01-24-2013)

  19. #75
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Yeah which was a fake...
    Not a fake, it was Drunken Cheetah's unl ammo. You could tell by the ESP Boxes that it was DC's hack not Blood's.

    He faked saying it was his, yes I will give you that.
    Reversing is the only way to move forward.

Page 5 of 7 FirstFirst ... 34567 LastLast

Similar Threads

  1. [tut] unlimited ammo
    By crimetime in forum WarRock - International Hacks
    Replies: 39
    Last Post: 06-29-2007, 03:14 PM
  2. [Tutorial] Unlimited Ammo
    By Spoking in forum WarRock - International Hacks
    Replies: 10
    Last Post: 06-02-2007, 09:17 AM
  3. Tutorial of unlimited ammo, and the God Mode
    By Scottsmith in forum WarRock - International Hacks
    Replies: 22
    Last Post: 05-22-2007, 05:16 AM
  4. help unlimited ammo
    By timtomo in forum WarRock - International Hacks
    Replies: 7
    Last Post: 05-06-2007, 11:38 AM
  5. Unlimited Ammo via Cheat Engine?
    By vega in forum WarRock - International Hacks
    Replies: 9
    Last Post: 11-18-2006, 08:59 PM