Announcement

Collapse
No announcement yet.

Medievil (NTSC-U) joker commands

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Medievil (NTSC-U) joker commands

    Press Select-Chicken Drumstick
    D00F192C 1000
    800F8210 1000
    this is one of the codes for this game that have the SELECT button as activator , in this code , select is " 1000 " , but i checked the article in this forum about joker commands , in that article " 1000 " can be only : Up Direction , or Triangle Button , so i ask to hackers of this site to post in this tread , the corresponding list of joker commands who contain the SELECT button as " 1000 "

  • #2
    Code:
     PSX games can use any one of four different value systems for storing button presses depending on the game. The only way to determine which system is used is to hack the joypad reader itself.
    Normal
    
    These are the values used in the GS D4, D5, and D6 code types. Combine buttons by using bitwise OR.
    Button 	Value
    L2 	0x0001
    R2 	0x0002
    L1 	0x0004
    L2 	0x0008
    Triangle 	0x0010
    O 	0x0020
    X 	0x0040
    Square 	0x0080
    Select 	0x0100
    L3 	0x0200
    R3 	0x0400
    Start 	0x0800
    Up 	0x1000
    Right 	0x2000
    Down 	0x4000
    Left 	0x8000
    Reverse
    
    This alternative button storage method had its values combined using bitwise OR. These values are determined by byteswapping the normal values.
    Button 	Value
    Select 	0x0001
    L3 	0x0002
    R3 	0x0004
    Start 	0x0008
    Up 	0x0010
    Right 	0x0020
    Down 	0x0040
    Left 	0x0080
    L2 	0x0100
    R2 	0x0200
    L1 	0x0400
    R1 	0x0800
    Triangle 	0x1000
    Circle 	0x2000
    X 	0x4000
    Square 	0x8000
    Max Normal
    
    These values are determined by subtracting the Normal joypad values from 0xFFFF. Buttons are combined with bitwise AND.
    Button 	Value
    L2 	0xFFFE
    R2 	0xFFFD
    L1 	0xFFFB
    R1 	0xFFF7
    Triangle 	0xFFEF
    Circle 	0xFFDF
    X 	0xFFBF
    Square 	0xFF7F
    Select 	0xFEFF
    L3 	0xFDFF
    R3 	0xFBFF
    Start 	0xF7FF
    Up 	0xEFFF
    Right 	0xDFFF
    Down 	0xBFFF
    Left 	0x7FFF
    Max Reverse
    
    These values are determined by subtracting the Reverse values from 0xFFFF.
    Button 	Value
    Select 	0xFFFE
    L3 	0xFFFD
    R3 	0xFFFB
    Start 	0xFFF7
    Up 	0xFFEF
    Right 	0xFFDF
    Down 	0xFFBF
    Left 	0xFF7F
    L2 	0xFEFF
    R2 	0xFDFF
    L1 	0xFBFF
    R1 	0xF7FF
    Triangle 	0xEFFF
    Circle 	0xDFFF
    X 	0xBFFF
    O 	0x7FFF
    Let's be together !!

    Comment


    • #3
      Medievil (NTSC-U) joker commands

      Code:
      D00F192C ???? (from database)
      
      Button 	Value
      Select 	1000
      L3 	N/A
      R3 	N/A
      Start 	2000
      Up 	0004
      Right 	0002
      Down 	0008
      Left 	0001
      L2 	0800
      R2 	0200
      L1 	0100
      R1 	0040
      Triangle 0400
      Circle 	0080
      X 	0010
      Square 	0020
      Code:
      D00F192E ???? (Hacked by lee4)
      
      Button 	Value
      Select 	2000
      L3 	4000
      R3 	8000
      Start 	1000
      Up 	0004
      Right 	0002
      Down 	0008
      Left 	0001
      L2 	0200
      R2 	0800
      L1 	0100
      R1 	0400
      Triangle 0010
      Circle 	0080
      X 	0020
      Square 	0040
      Code:
      D00F1B1E ???? (Hacked by Hacc)
      
      Button 	Value
      Select 	FFFE
      L3 	FFFD
      R3 	FFFB
      Start 	FFF7
      Up 	FFEF
      Right 	FFDF
      Down 	FFBF
      Left 	FF7F
      L2 	FEFF
      R2 	FDFF
      L1 	FBFF
      R1 	F7FF
      Triangle EFFF
      Circle 	DFFF
      X 	BFFF
      Square 	7FFF
      lee4 Does Not Accept Codes Requests !
      When lee4 asks a question it does not mean lee4 will look at your game
      *How to create and use SegaCD codes >click here<*
      >)

      Comment

      Working...
      X