User Tag List

Page 1 of 3 123 LastLast
Results 1 to 10 of 23

Thread: jokering for newbies

  1. #1
    jokering for newbies

    User Info Menu

    jokering for newbies

    First thing you need is the controller address to find that set game pause to true. then exit your device then hold L and dont let it go then enter your device again. now go to find exact value and search in hex 0x00000100 that value is equal to L when you go to joker. then after your search is done EXIT THE DEVICE then dont hold anything. then go back into your device and search 0x00000000 in hex. repeat the process as many times as you need. now keep in mind some games have dmaed controller addresses like killzone liberation's controller address is double dmaed. you will know if it is dmaed if it works once but doesn't ever again. {note: if there are multiple results that wont go away test them all}
    -
    ok now what you need to know is how to put your address into "Real" addressing as you know nght pr and coderpr use "False" addressing. to get "Real" addressing of your code you want to joker add with a hex calculator 08800000 and you get the real addressing of the address you wish to joker.
    -
    ok now you need to know what is positive and negative in hex and how to spot it, dont get scared it isnt hard what tells us if the address is positive or negative is the last 4 digits of the hex of the code if it is from 0000 to 7F80 then the code is positive in witch case we do nothing. but if it is from 7F80 to FFFF then it is NEGATIVE in which we need to add 1 to the first half of the address like so 0x0893A020 the red digits are negative so what we do is we make the green go up by 1 digit so it becomes 0x0894A020. that way you wont freeze =].
    -
    now what you need are to know the values for jokering , cause if you dont know them then it has no point to learn to joker a code. here they are below SO YOU KNOW some of them you cant use with most structures unless you modify them. {but in this one i didnt list those ones so no worries}

    Select button = 0001
    Start button = 0008
    Up D-Pad button = 0010
    Right D-Pad button = 0020
    Down D-Pad button = 0040
    Left D-Pad button = 0080
    Left trigger = 0100
    Right trigger = 0200
    Triangle button = 1000
    Circle button = 2000
    Cross button = 4000
    Square button = 8000

    -NOTE: not all games have the same buttons some are different. to find those all you have to do is set pause game to true and hit find unknown D-Word {32 bit search in night pr} then exit the device and hold L then Without letting go of L go back into the device and do a greater than search. then after it is done. exit night pr / coder pr. then search less. continue till you have the controller address from there you can find all the buttons

    -

    ok now onto the template {aka structure or method} now what is displayed here are commands in what is called mips, they tell the game what you want to do {in the simplest sense. how to convert them into HEX format you can use Ps2Dis .
    -

    here is a structure that you would use to joker {wile holding a button to be on} for a game that has no dmaed controller address {so you know make sure it is in a adress area that is all nops, {0x00000000}

    {got it from xxsnipexx cause i couldent locate the text i had my own method in and i didnt feel like makeing a method just for this tut}

    Lui t0 $(first half address +0880)
    Lui t1 $(First half controller Address +0880)
    lh t1 $(Second Half Of Controller Address)(t1)
    ori t2 t2 $(Activation Value)
    Bne t1 t2 $(Jumps to JR RA)
    nop
    lui t3 $(First hacked value)
    ori t3 t3 $(Second half Hacked Value)
    sw t3 $(Last half of Address)(t0)
    jr ra

    -
    note for the jump to jr ra you should first put in the commands into ps2 dis like this Bne t1 t2 $0000 and then copy the first 4 digits of the hex then count {not includeing the nop} down till you get there and it will become 0x152a0004

    -

    ok now you need to know what to put after the joker, what is needed after it is a hook. without it the code will not work, a hook can be eigther a jr ra , a j , or a jal

    to find a hook all you need to do is search 0x03e00008 in hex in find exact value. then cancel it not long after you started it {ull have enough results} add alot of em to your device and edit the hex of them one by one till {result by result} till you freeze the address that freezes you can be used as a hook.
    -

    how you add a hook to your code, what you do is have the original address and put it after your jr ra and have its hex jal $(in real addressing the address your joker starts on} and that will be the hex of the hook.
    -

    if you did everything right then Congratulations you made a joker.

    {if anything is wrong with the guide pm me or reply here}



    TUT Credit: HX-god_of_death
    Why I Pwn The Pwners

  2. #2
    jokering for newbies

    User Info Menu

    Exclamation Re: jokering for newbies

    nice send link 2 johnny or one of the other mods and hav them place tht
    My Ftb2 Acc(storm.j.3.s.u.s) Ranked 18 Overall:laugh:
    PART OF 1337
    ♣™ßaßy.j.3.s.U.sâ„¢♣LEGENDOFSOCOMFTB2ONLINE CODER

  3. #3
    jokering for newbies

    User Info Menu

    Re: jokering for newbies

    personally i think it should be stickyed =\ but thts just me i mean i made it will all the info new peeps needed to joker and i left it as simple as i could so to not confuse peeps
    Why I Pwn The Pwners

  4. #4
    jokering for newbies

    User Info Menu

    Re: jokering for newbies

    i hate that why of jokering it fails cuz it will only work with certain codes and u gotta get the other command for da other hex
    Get At Me Bl4Ck.KiD... Aka BK
    Future Rapper - Spits Fire
    Psp Coder - Mips, C
    Web Designer - HTML, Javascript, Some PHP
    Computer Programmer - Currently Learning C/C++, Visual Basic, Pascal, Brainfuck, Python, Ruby

  5. #5
    jokering for newbies

    User Info Menu

    Re: jokering for newbies

    not really if u know what ur doing u can make a method that works for any code lol
    Why I Pwn The Pwners

  6. #6
    jokering for newbies

    User Info Menu

    Re: jokering for newbies

    Quote Originally Posted by HX-god_of_death View Post
    not really if u know what ur doing u can make a method that works for any code lol
    u would have to change the command or add another to add the last 4 digits of ur code
    Get At Me Bl4Ck.KiD... Aka BK
    Future Rapper - Spits Fire
    Psp Coder - Mips, C
    Web Designer - HTML, Javascript, Some PHP
    Computer Programmer - Currently Learning C/C++, Visual Basic, Pascal, Brainfuck, Python, Ruby

  7. #7
    jokering for newbies

    User Info Menu

    Re: jokering for newbies

    Quote Originally Posted by Bl4Ck.KiD... View Post
    u would have to change the command or add another to add the last 4 digits of ur code
    thats easy to do =\ same with makeing your own method, easy
    Why I Pwn The Pwners

  8. #8
    jokering for newbies

    User Info Menu

    Re: jokering for newbies

    yes but for ppl dat dnt know..dee dee dee
    Get At Me Bl4Ck.KiD... Aka BK
    Future Rapper - Spits Fire
    Psp Coder - Mips, C
    Web Designer - HTML, Javascript, Some PHP
    Computer Programmer - Currently Learning C/C++, Visual Basic, Pascal, Brainfuck, Python, Ruby

  9. #9
    jokering for newbies

    User Info Menu

    Re: jokering for newbies

    lol there are other metohds on the site that i beleive was posted by warlock this can help them understand that aswell Dee dee dee
    Why I Pwn The Pwners

  10. #10
    jokering for newbies

    User Info Menu

    Re: jokering for newbies

    Quote Originally Posted by HX-god_of_death View Post
    lol there are other metohds on the site that i beleive was posted by warlock this can help them understand that aswell Dee dee dee
    lol iight watever u say
    Get At Me Bl4Ck.KiD... Aka BK
    Future Rapper - Spits Fire
    Psp Coder - Mips, C
    Web Designer - HTML, Javascript, Some PHP
    Computer Programmer - Currently Learning C/C++, Visual Basic, Pascal, Brainfuck, Python, Ruby

Page 1 of 3 123 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
  •