+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2011
    Posts
    42
    Points
    202,468.62
    Rep Power
    152

    Question I tried to joker a code but :(

    Hey guys i tried to joker my code " Knife boot everyone " (SFCO)
    but when I turn it on in NitePR my psp Freeze
    i tried the way for "Regular Code"

    here is the real adress of the code:
    0x08F8C894 0x00000001

    and here is the result:


    #Knife boot everyone (not you)
    ;Credit: Qc_LegSshOotEr-
    ;L-Trigger + Right to turn on
    ;L-Trigger + Left to turn off
    0x08800090 0x0a200013
    0x0880004c 0x3c0808e6
    0x08800050 0x8d087f34
    0x08800054 0x24090120
    0x08800058 0x240a0180
    0x0880005c 0x15090005
    0x08800060 0x00000000
    0x08800064 0x3c0b08f8
    0x08800068 0x3c0c0000
    0x0880006c 0x358c0001
    0x08800070 0xad6cc894
    0x08800074 0x150a0005
    0x08800078 0x00000000
    0x0880007c 0x3c0b08f8
    0x08800080 0x3c0c0000
    0x08800084 0x358c0003
    0x08800088 0xad6cc894
    0x0880008c 0x03e00008


    did i made an error ?? O.O

  2. #2
    Join Date
    Aug 2011
    Location
    your roof
    Posts
    386
    Points
    1,149,447.07
    Rep Power
    155

    Default Re: I tried to joker a code but :(

    Quote Originally Posted by Oponogo View Post
    Hey guys i tried to joker my code " Knife boot everyone " (SFCO)
    but when I turn it on in NitePR my psp Freeze
    i tried the way for "Regular Code"

    here is the real adress of the code:
    0x08F8C894 0x00000001

    and here is the result:


    #Knife boot everyone (not you)
    ;Credit: Qc_LegSshOotEr-
    ;L-Trigger + Right to turn on
    ;L-Trigger + Left to turn off
    0x08800090 0x0a200013
    0x0880004c 0x3c0808e6
    0x08800050 0x8d087f34
    0x08800054 0x24090120
    0x08800058 0x240a0180
    0x0880005c 0x15090005
    0x08800060 0x00000000
    0x08800064 0x3c0b08f8
    0x08800068 0x3c0c0000
    0x0880006c 0x358c0001
    0x08800070 0xad6cc894
    0x08800074 0x150a0005
    0x08800078 0x00000000
    0x0880007c 0x3c0b08f8
    0x08800080 0x3c0c0000
    0x08800084 0x358c0003
    0x08800088 0xad6cc894
    0x0880008c 0x03e00008


    did i made an error ?? O.O
    there's a few error's here. and some things which you could have just done better.

    error 1 : still in real addressing. how to fix : subtract 08800000 from the address of each line (just take away the "88"'s)

    error 2 : not a nop cave. how to fix : your spose to place your code in a zone thats all nops (just a big stretch of address that all have the value "0" a good example is address's 08801000-08803500

    error 3 : hook? im not 100% sure if your hook is active or not. but even if it is active its the line under your jr ra. and jr ra's automatically activate the line under them so that could have some thing to do with your freezeing. i suggest you just use this hook : 0x0000640C (demon450's)

    error 4 : negative rule. if the second half of your address is above "7f80" you have to add one to the first half of your address in this case "08f8c894" because c894 > 7f80 you have to add one to the first half of the address so it would look like this : "08f9c894"

    there are other things you could do to make the code shorter if you want more info just ask. any way here's the fixed code try it out.

    #Knife boot everyone (not you)
    ;Credit: Qc_LegSshOotEr-
    ;L-Trigger + Right to turn on
    ;L-Trigger + Left to turn off
    ;fixed
    0x00001000 0x3c0808e6
    0x00001004 0x8d087f34
    0x00001008 0x24090120
    0x0000100c 0x240a0180
    0x00001010 0x15090005
    0x00001014 0x00000000
    0x00001018 0x3c0b08f9
    0x0000101c 0x3c0c0000
    0x00001020 0x358c0001
    0x00001024 0xad6cc894
    0x00001028 0x150a0005
    0x0000102c 0x00000000
    0x00001030 0x3c0b08f9
    0x00001034 0x3c0c0000
    0x00001038 0x358c0003
    0x0000103c 0xad6cc894
    0x00001040 0x03e00008
    0x0000640C 0x0a200400
    Last edited by sdrawkcab; 06-05-2012 at 11:48 PM.

  3. #3
    Join Date
    Oct 2011
    Posts
    42
    Points
    202,468.62
    Rep Power
    152

    Default Re: I tried to joker a code but :(

    ok thx

+ Reply to Thread

Posting Permissions

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