User Tag List

Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: How to make a text mod for FTB2

  1. #1
    How to make a text mod for FTB2

    User Info Menu

    How to make a text mod for FTB2

    This tutorial was created by TheGodFather I take no credit..


    Socom FTB2 Text Mods. by TheGodFather
    "*This Is a very simple tutorial for a very simple hack Code

    *What is a Text Hack/Mod?
    A text hack or mod is a code in which the text in a game is altered
    Today we're going to make a simple one.

    *We're going to make FAST LOGIN turn into SLOW LOGIN!
    1. Open PS2dis Download PS2DIS Here.


    2. Load Your Dump (In this case SOCOM Fireteam Bravo 2)

    3. I'm not sure if it matters or not what address you load it from, but I was told to load it from 00000000

    4. Press Ctrl+f (It should open up strings)

    5. Type in FAST LOGIN in capital letters (MUST BE CAPS)

    6. You should get a "beql" type (it's beql in this case)

    *Ok
    Now with that address highlighted, press "b" until you see FAST LOGIN on the right side of Ps2dis (it should be about 3 times in this case.). You'll notice that they all turned into .bytes

    Now double click on the address for F.

    Do you see how the value for that address is ----46--?

    You're going to replace that 46 with two new numbers that make up a hex

    If you don't know which letters are which, then download the attached notepad file.

    So you would change the 46 in that value to 53 for S

    Repeat the same steps for A, S, and T

    Now before you do that, after you type in the new value for A to change to L, the registers will change to .half
    to simply change this, press b once, and it should go back to normal
    continue to replace the values until you see SLOW LOGIN
    after that is done, highlight the top byte file (should be 00 for value in this case)
    and press "c" for how many times you pressed "b" before
    so it should have been three times, so hit c three times until you don't see anymore .byte files

    Now because you pressed b three times and c three times, you're going to have to remember the top 3 registers above the highlighted file

    In this case it should be a "srav", and two cop1x's, or a cop something or other, Lmao
    Now you either do the following, just copy the addresses and values from those three registers by typing them, or you can do edit copy at the top of

    PS2dis
    but if you paste it somewhere, it'll come out with a ****load of other values
    which is why you need to remember which ones you were looking for, (the three above the ldr file)

    If you do it the copy and paste way, just delete everything that isn't those three addresses
    the only thing left now is converting them to CW cheat format

    So change the 00 in the front of each of the ADDRESSES to 20
    and then add the 0x in front of everything
    so it should look something like this:

    Cw cheat
    _C1 SLOW LOGIN
    _L 0x20590a7c 0x4f4c5300
    _L 0x20590a80 0x4f4c2057
    _L 0x20590a84 0x004e4947

    NitePr
    #SLOW LOGIN
    0x00590A7C 0x4F4C5300
    0x00590A80 0x4F4C2057
    0x00590A84 0x004E4947"

    Hex Letter Guide from TheGodFather:
    Code:
    1. { is 7b
    2. } is 7d
    3. _ is 5f
    4. . is 2e
    5. ( is 28
    6. ) is 29
    7. % is 25
    8. " is 22
    9. ! is 21
    10. = is 3d
    11. : is 3a
    12. [ is 5b
    13. ] is 5d
    14. # is 23
    15. $ is 24
    16. & is 26
    17. ^ is 5e
    18. * is 2a
    19. @ is 40
    20. ~ is 7e
    21. + is 2b
    22. < is 3c
    23. > is 3e
    0 is 30
    1 is 31
    2 is 32
    3 is 33
    4 is 34
    5 is 35
    6 is 36
    7 is 37
    8 is 38
    9 is 39
    ~=7E
    !=21
    @=40
    #=23
    $=24
    %=25
    ^=5E
    &=26
    *=2A
    (=28
    )=29
    -=2D
    _=5F
    ==3D
    +=2B
    [=5B
    ]=5D
    {=7B
    }=7D
    :=3A
    ;=3B
    '=27
    "=22
    ,=2C
    .=2E
    /=2F
    =5C
    |=7C
    <=3C
    >=3E
    ?=3F
    0=30
    1=31
    2=32
    3=33
    4=34
    5=35
    6=36
    7=37
    8=38
    9=39
    A=41
    B=42
    C=43
    D=44
    E=45
    F=46
    G=47
    H=48
    I=49
    J=4A
    K=4B
    L=4C
    M=4D
    N=4E
    O=4F
    P=50
    Q=51
    R=52
    S=53
    T=54
    U=55
    V=56
    W=57
    X=58
    Y=59
    Z=5A
    a=61
    b=62
    c=63
    d=64
    e=65
    f=66
    g=67
    h=68
    i=69
    j=6A
    k=6B
    l=6C
    m=6D
    n=6E
    o=6F
    p=70
    q=71
    r=72
    s=73
    t=74
    u=75
    v=76
    w=77
    x=78
    y=79
    z=7A
    ?=80
    ?=B0
    ?=AB
    ?=BB
    ?=BF
    Every man for himself. You trust no one but yourself, if you want something done you do it your self don't rely on others. You watch your own back, you fight your own fights its you against the world.

    Quote Originally Posted by Some phag
    -.BUS.-'s mommy says to Cannon, "I love you,
    I love you, I love you"
    The Cannon on the bus says, "I love you, too"
    All through the town.

  2. #2
    How to make a text mod for FTB2

    User Info Menu

    Re: How to make a text mod for FTB2

    This tutorial is very unnecessary, it takes like 40 seconds to make one using nite pr, but im to lazy to make a tut on it :P
    Download my toolbar pl0x!

    [Today 09:40 PM] SyKotik Cannon: agreed
    [Today 09:39 PM] PoopDeritis: YOU'RE GAY

  3. #3
    How to make a text mod for FTB2

    User Info Menu

    Re: How to make a text mod for FTB2

    it dont work...

    try for an LW or M67...

    DONT WORK

  4. #4
    How to make a text mod for FTB2

    User Info Menu

    Re: How to make a text mod for FTB2

    It works..
    Every man for himself. You trust no one but yourself, if you want something done you do it your self don't rely on others. You watch your own back, you fight your own fights its you against the world.

    Quote Originally Posted by Some phag
    -.BUS.-'s mommy says to Cannon, "I love you,
    I love you, I love you"
    The Cannon on the bus says, "I love you, too"
    All through the town.

  5. #5
    How to make a text mod for FTB2

    User Info Menu

    Re: How to make a text mod for FTB2

    ok do LW or M67 and show me the code...LETS see...

    if im wrong im sorry but hey it wont wrk for me...

  6. #6
    How to make a text mod for FTB2

    User Info Menu

    Re: How to make a text mod for FTB2

    Can u make a tutorial cause ppl like me might want to know

  7. #7
    How to make a text mod for FTB2

    User Info Menu

    Re: How to make a text mod for FTB2

    poopdertis can u plz make a tut for me plz plz plz i want a text mod plz plz
    THE REALIST

  8. #8
    How to make a text mod for FTB2

    User Info Menu

    Re: How to make a text mod for FTB2

    wow how about some manners here good god yall are freaking out cause he posted his own tutorial, if you dont like it then dont post anything and then dont open it up! i know alot of people that have used this and its helped them out alot i mean this in my opinnion is a great post!!!! great job zeus, but one thing do you know how to make a space in them so like instead of SLOWLOGIN it will say SLOW LOGIN?

  9. #9
    How to make a text mod for FTB2

    User Info Menu

    Re: How to make a text mod for FTB2

    This is awesome thanks. But one question, when do you turn it on? Do you make the name like #!SLOW LOGIN so it automatically is on or what?

    ----Added 1/1/2009 at 4:50 PM----
    Quote Originally Posted by Gitrduncardinals View Post
    wow how about some manners here good god yall are freaking out cause he posted his own tutorial, if you dont like it then dont post anything and then dont open it up! i know alot of people that have used this and its helped them out alot i mean this in my opinnion is a great post!!!! great job zeus, but one thing do you know how to make a space in them so like instead of SLOWLOGIN it will say SLOW LOGIN?
    For a space, you type 20, so... is 20(space) is 20You get it?
    FTB2 NAMES:
    -S.0.L.D.I.3.R-
    -JVIAD-IVIA7V-
    ------jJOW7VAGE
    PSP 1000: 3.52 > 4.01 > 5.00 > 3.90 M33-3 > 5.00 M33-4
    PSP 3000: 3.72 > 5.02

  10. #10
    How to make a text mod for FTB2

    User Info Menu

    Re: How to make a text mod for FTB2

    Quote Originally Posted by JVIADIVIA7V View Post
    This is awesome thanks. But one question, when do you turn it on? Do you make the name like #!SLOW LOGIN so it automatically is on or what?

    ----Added 1/1/2009 at 4:50 PM----


    For a space, you type 20, so... is 20(space) is 20You get it?
    You should type it or write it down in notepad or something or save your cheats when done making it in nitepr. Then just go into your codes on your psp with USB and make sure you remember or wrote down which are which then just rename them. You generally turn it on before you get to where the text is going to be displayed. Or you can just refresh the page by going somewhere then going back and it should appear.
    Every man for himself. You trust no one but yourself, if you want something done you do it your self don't rely on others. You watch your own back, you fight your own fights its you against the world.

    Quote Originally Posted by Some phag
    -.BUS.-'s mommy says to Cannon, "I love you,
    I love you, I love you"
    The Cannon on the bus says, "I love you, too"
    All through the town.

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •