Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

Noesis XPR Plugin For PS3. (NCAA FOOTBALL 14)

Featured Replies

  • Author
  • Localization

KidOS, posted Sat Jan 26, 2019 3:12 am (42769)


With you guys' help, I was able to extract the .XPR files from NCAA Football 14. The problem that I now have, is that I cannot view the files in Noesis. I think this is because I am using the "tex_XBox360_XPR" plugin that was modified by Acewell, but my files are for the PS3 version of the game. I came here hoping that Acewell or someone could help me complete this last step in the process. Thanks!

Below are the scripts and files in question. Both ".xpr" files are the same file, but from different consoles. The "tex_XBox360_XPR" plugin works with the (XBOX) file, but I need a plugin to work with the (PS3) file. Thanks!

NCAA Football Files.zip

  • Author
  • Localization

Acewell, posted Sat Jan 26, 2019 12:48 pm (42778)


that PS3 xpr isn't a conventional xpr, it's just a dds file with custom magic. :D
this bms script will return it to working dds file
Code:
# script for QuickBMS http://aluigi.altervista.org/quickbms.htm

get SIZE asize
math SIZE - 4
get NAME basename
string NAME .dds
set memory_file binary "\x44\x44\x53\x20"
append
log NAME 0 4 -1
log NAME 4 SIZE
append
  • Author
  • Localization

KidOS, posted Sat Jan 26, 2019 2:10 pm (42783)


Acewell wrote:
that PS3 xpr isn't a conventional xpr, it's just a dds file with custom magic. :D
this bms script will return it to working dds file
Code:
# script for QuickBMS http://aluigi.altervista.org/quickbms.htm

get SIZE asize
math SIZE - 4
get NAME basename
string NAME .dds
set memory_file binary "\x44\x44\x53\x20"
append
log NAME 0 4 -1
log NAME 4 SIZE
append


Gracias! And how do I export the edited ".dds" file as an ".xpr" file? Thanks
  • Author
  • Localization

beedy, posted Sun Jan 27, 2019 9:12 am (42820)


Change first 4 bytes "44 44 53 20" to "70 33 52 02" from edited .dds with Hex editor and file extension from .dds to .xpr. That's simple. If you convert .xpr to .dds and compare .dds and .xpr with hex editor you can see that only first 4 bytes are different.

This will work dds to xpr:
Code:
# script for QuickBMS http://aluigi.altervista.org/quickbms.htm

get SIZE asize
math SIZE - 4
get NAME basename
string NAME .xpr
set memory_file binary "\x70\x33\x52\x2"
append
log NAME 0 4 -1
log NAME 4 SIZE
append
  • Author
  • Localization

Acewell, posted Sun Jan 27, 2019 1:05 pm (42832)


here is one script to combine the two. :)
PS3 xpr to dds to PS3 xpr
Code:
# script for QuickBMS http://aluigi.altervista.org/quickbms.htm

get EXT extension
get SIZE asize
math SIZE - 4
get NAME basename
if EXT == xpr
    string NAME .dds
    set memory_file binary "\x44\x44\x53\x20"
elif EXT == dds
    string NAME .xpr
    set memory_file binary "\x70\x33\x52\x2"
endif
append
log NAME 0 4 -1
log NAME 4 SIZE
append
  • Author
  • Localization

gainerje47, posted Wed Oct 23, 2019 4:05 am (51692)


How can I download this script for PS3? I only see the Xbox 360 script in the main files. Can you please show me how to use it or provide the script that I can use to open/convert the same files provided by kiDos?

Thanks so much!
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.