Help:Ripping files

From Diamond Records Wiki
Jump to navigation Jump to search

Ripping textures such as icons[edit source]

For this, you will need Nox Emulator on version V_3.8.5 ENABLE DIRECTX. This is because on most new versions it will simply not work. It may work on others, has not been tested. You also need NinjaRipper 1.7.1.

Now, set ninjaripper to Nox.exe and use intruder inject. Run Nox through NinjaRipper. Now, Nox should launch. Enter DR, go to wherever you may find textures or other assets you wish to rip.

Use the keybinds found in NinjaRipper's settings to rip files that you need.

Textures will be exported as .dds and you will need to convert them using DDS Converter.

Flipping and rotating jpg,png files[edit source]

You can use Windows Powershell for this

$path = "C:\Example\File\Location"
[System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
Get-ChildItem -recurse ($path) -include @("*.png", "*.jpg") |
ForEach-Object {
$image = [System.Drawing.image]::FromFile( $_ )
$image.rotateflip("Rotate180FlipX")
$image.save($_)
}