EXT Gaming
Welcome to EXTPortable, Guest!

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum. But please, don't become part of the site just for the Downloads, If you Register, do it because you want to have fun and get to know people, if NOT then don't Register at all.

Thank You,

Bou

Join the forum, it's quick and easy

EXT Gaming
Welcome to EXTPortable, Guest!

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum. But please, don't become part of the site just for the Downloads, If you Register, do it because you want to have fun and get to know people, if NOT then don't Register at all.

Thank You,

Bou
EXT Gaming
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Latest topics
» [Forum Game]Yum or Yuck
Making One Shot Kill Codes [By Black Wolf] EmptySat Aug 09, 2014 2:10 am by AvieD1ne

» True or False
Making One Shot Kill Codes [By Black Wolf] EmptySat Aug 09, 2014 1:53 am by AvieD1ne

» EXT
Making One Shot Kill Codes [By Black Wolf] EmptyFri Aug 08, 2014 7:30 pm by AvieD1ne

» 'Ello there!
Making One Shot Kill Codes [By Black Wolf] EmptyFri Aug 08, 2014 6:49 pm by AvieD1ne

» Sup son! What You Doing Now 2
Making One Shot Kill Codes [By Black Wolf] EmptyFri Aug 08, 2014 6:38 pm by AvieD1ne

» What are you currently playing?
Making One Shot Kill Codes [By Black Wolf] EmptyFri Aug 08, 2014 6:31 pm by AvieD1ne

» Hai :3
Making One Shot Kill Codes [By Black Wolf] EmptyThu Aug 07, 2014 11:40 am by Neff Anselmo

» Anime Ramen
Making One Shot Kill Codes [By Black Wolf] EmptyFri Jan 31, 2014 5:58 am by Bou

» Happy New Year
Making One Shot Kill Codes [By Black Wolf] EmptyMon Jan 27, 2014 8:26 am by Ziyi

Who is online?
In total there is 1 user online :: 0 Registered, 0 Hidden and 1 Guest :: 1 Bot

None

Most users ever online was 256 on Sun Apr 11, 2021 10:10 pm

Making One Shot Kill Codes [By Black Wolf]

Go down

Making One Shot Kill Codes [By Black Wolf] Empty Making One Shot Kill Codes [By Black Wolf]

Post by Guest Thu Dec 22, 2011 12:32 am

Ok this is my second guide for all you VIP users, this one is about how YOU can make a one shot kill code for nearly any game, easily. Without even touching the weapon mod areas, you can do all this in cheatmaster.

Ok, there are multiple ways to make a one shot kill code, i will be explaining the 2 easiest (imo) to make, one is a lot more complex than the other however, but may not work in some games.

These are all the commonly used methods, i'll be detailing the first 2 (the 2nd was invented by me ;))

1. Making a "Multi" code or just a single code to lock some, or all, enemies health at 01 (meaning OHK)

2. Creating a pointer that finds what enemy you are targetting, following this pointer with an offset to find the enemies health (complex)

3. Modifying the damage that the games weapons do. This is very difficult, as you can't actively search for a static address, however i am fast developing an easier method to accomplish this, using my secret method as a "template."

Ok lets start with number 1

-------------------------------------------------------------------------------------------------------------------

METHOD 1:

Ok this method is incredibly easy, all it reall involves is locking all enemies (or a few if game is DMA) health at 1. This means that when you hit them, they die.

Now most games have enemies in "slots" For example, when you fight a battle in FFVII:Crises Core,

the slots are like ENEMY 1, ENEMY 2 etc, regardless of what enemy you face, it will fit into one of these "slots" so for example, you fight 1 small worm, then your next battle is against 1 huge boss, their health is at exactly the same place (unless DMA, in which case you can find each slot individually and pointer it, common sense)

Now the slots are commonly equal distance appart. MEANING that all enemies health is the same distance apart MEANING if the game is non DMA, you can make a 2 line code that will lock all enemies health at 1, using the CW Cheat multiline method.

So look at this site again (its a great site, i recommend bookmarking it, as i'll be refering to it a lot.

[You must be registered and logged in to see this link.] ... :psp_types

PSP Code Types

Now go to the multiline codes, i recommend using the 0x8 instead of the 0x4, its a lot easier to use as you don't have to divide anything.

So just follow the format so that it locks all the enemy slots at 1, simple (if you need more detail on making this type of code, just say so at the bottom and i'll explain more).

------------------------------------------------------------------------------------------------------------------

METHOD 2:

Now i'm warning you, this method is very complex, and has not been thoroughly tested, however i've used this on game like Spider Man 3, Jeanne D'ark and FFT, and its worked no problem. Basically, its going to be a LOT easier if you do a game with a lock on system. But there are other ways.

Ok the first step of this method is to find some kind of connection between you and a single enemy. For example, targeting an enemy, placing a curser on the enemy, or even LOOKING at the enemy (kratos GOW looks at different enemies, usually the one closest) From now on i'll be speaking of this connection as a "target" though you can use any variables that provide said link.

Ok so start an unkown search, and target different enemies and the same enemy etc doing a unequal, equal etc search. Do this untill you have a smallish number of results. Now you need to look through your results for an address that has a value that looks like an address, for example the value may be 0x08814567. The value should be an address + 08800000. So ANYTHING greater than 08800000 is an option here. So scan through your results, adding ones that look like pointers.

Ok now target an enemy and find his health (standard way, hit him search less etc) you MUST stay targetting the same enemy. Now once you've found his health, look at its address, and compare it to all you pointer values. Your looking for one of your pointers that is pointing to an address SLIGHTLY smaller than your enemies health. If one is not there, you'll need to find another link, or the method isn't working for that game. If you HAVE found onem find the difference between where your pointer is pointing, and the enemies health. (first minus your pointers value by 08800000 to get it in cheat format) now remember this difference, this is going to be you offset.

So now, lets make our pointer, its simple, just follow the format as before

0x6aaaaaaa 0xvvvvvvvv

0x0002nnnn 0xiiiiiiii

aaaaaaa = This is the address of your pointer, the one that was in your results. The ADDRESS, NOT what it was pointing to.

vvvvvvvv = Set this at like 00000001 for one shot kill, but you can set it on like a big number if you want to like HEAL allies that you target etc

nnnn = just set this to like 0001, it doesn't do much lol

iiiiiiii = This is your offset, the difference between where you pointer pointed (lol) and the enemy health

Once you make your pointer, you can joker like an instant kill, or just leave it as one shot kill. But now, any enemy you targetm their health will go to the value you specified, as soon as you target them ;)

Ok i hope this is all explained well, i know the second method is pretty complex, so its mainly for all you advanced hackers, but the first method should be easy to handle. Remember, if the game is DMA, just use a pointer on the enemies regular health, you won't be able to do a multiline code, but you can make like a one shot kill BOSS code, this is what i did for MHF2.

Enjoy these new methods.

-Black Wolf
avatar
Guest
Guest


Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum