About Kill Count

09/09/2014 23:14 jpbl2013#1
I do not have much knowledge in sql language, would someone please, with more knowledge, looked at my script and tell me if something's wrong, because it does not work ... My idea is to make the player get kill +99 every player he kills ... for I am developing an ep 5.4 server and there is no count available to kill him ... Follow the below code, I inserted the code in dbo.usp_Insert_Action_Log_E in PS_GameLog:

09/09/2014 23:19 nubness#2
That's not how this works. That's not how any of this works.

Debug the ps_game.exe, find the function that assigns the player 1 kill and make it 100.
09/09/2014 23:41 jpbl2013#3
Quote:
Originally Posted by nubness View Post
That's not how this works. That's not how any of this works.

Debug the ps_game.exe, find the function that assigns the player 1 kill and make it 100.
How do I find it?
09/09/2014 23:56 nubness#4
  • Attach [Only registered and activated users can see links. Click Here To Register...] to your ps_game.exe process.
  • Search for the current amount of kills you have.
  • Change your current kills with a command (/set CharName kill x).
  • Search for the new value.
  • When you have one value (which is your amount of kills), move it to the address list and check what accesses it. This will start the Cheat Engine debugger.
  • Kill someone and see what function appeared on the list. Look around for something like add eax,1.
  • That's it.
  • Potatoes.
09/10/2014 00:21 jpbl2013#5
I found 9 addresses


What I do now, which one should I change?
09/11/2014 11:23 JuuF#6
In ep5.4 ps_game.exe it is different, it isnt
Code:
add eax,1
it is
Code:
 inc eax
so you have to inject a code to that address or move it to free place and change it to add eax format.
09/11/2014 23:03 .XVC.#7
I will use that thank you JuuF.