User Tag List

Results 1 to 10 of 29

Thread: Getting started with PS2DIS

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Getting started with PS2DIS

    User Info Menu

    Getting started with PS2DIS

    This is just how to get the game of your choosing loaded so you can start browsing and editing the code.


    1. Get PS2DIS Ver.0902090408 BUILD #35 from the attachments below
    2. Open it up. (ps2dis.exe inside the ps2dis099_23 folder)
    3. Take a dump from the Game Dump section. (You can also make your own dumps using NitePR)
    4. Drag it into PS2DIS.
    5. Should say load from 00000000, just click ok.

    You should see a bunch of numbers starting from 00000000


    The numbers in on the left are addresses and the numbers on the right are values. Let's look at format for a code

    #Code Name
    0xAddress 0xValue

    Now back to the image


    See the highlighted row? (Dark Blue background) Well that's the code for Syphon Filter Logan's Shadow Melee=Boot. Do you see it? 00180CB8 is the address so it would go in as 0x00180CB8 now if 27BDFFF0 is the original value that means if you melee someone they would receive their damage. So you want to change the value to the value that would cause someone to get booted and that value is 03E00008. So plugged into the code the value would be 0x03E00008. Now here's the finished product:

    #Melee=boot
    0x00180CB8 0x03E00008


    Now this is probably where you are going "Ok now how do we know what address we are looking for and what value to change it to?"

    To better understand what to look for you should read up on MIPS. I learned a pretty good bit from google and the book "See Mips Run" by Dominic Sweetman, which you can get HERE:
    http://www.megaupload.com/?d=NBZWA08U




    Looking back at the Melee=boot area in PS2DIS (Remember the area with the Dark Blue background is the Melee=Boot part) you will see "addiu" this is the name of the MIP. Now the "sp, sp, $fff0" is the action the MIP performs. You will understand this better as you learn about MIPS. Good luck and have fun!
    Attached Files Attached Files

    Rules are HERE. They have been updated as of May 30th 2013 at 5:00 A.M.
    If you see a topic that a link is broken, the information is no longer correct, the content has been patched, or a rule is being broken please use the button. Thanks.

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
  •