String Code

What is a String Code?
    A string code lets you place a string of code into memory without having to enter the main code all the time.  It's designed to enter text, but it can enter regular values too.  Let's look at an example.

Address is the address we want to start the string at.  We will use our Infinite Armor code from Twisted Metal 2.  No it will not work how we want it to, it will most likely crash the game.  But...
Text is the text that you want to insert into the starting address.  Now Generate String code.

You can see that it don't look like much but there is a logic.  Let's break it down.
    50187D00 000E
    |  |               |_This part tells the system, in HEX, how many letters.
    |  |_This is the code we told it to start at 80187D00
    |_This tells the xploder that it is a String Code.

Now for the rest of the code.
546869732069  This is the HEX value for each of the letters.  20 is the HEX for space
T  h  i   s       i

732061207465
s       a       t   e

737400000000
s   t
 
 

 Back to X-link TOC