From 48b1404c33db9846baa379f97173d8e0159dc93f Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Fri, 18 Oct 2024 15:11:44 -0400 Subject: PDAFT --- PDAFT/.gitignore | 3 +++ PDAFT/README.md | 3 +++ PDAFT/bin/VC_redist.x64.exe | Bin 0 -> 25502344 bytes PDAFT/bin/VC_redist.x86.exe | Bin 0 -> 13950496 bytes PDAFT/env | 7 +++++++ PDAFT/run | 5 +++++ PDAFT/setup | 7 +++++++ 7 files changed, 25 insertions(+) create mode 100644 PDAFT/.gitignore create mode 100644 PDAFT/README.md create mode 100644 PDAFT/bin/VC_redist.x64.exe create mode 100644 PDAFT/bin/VC_redist.x86.exe create mode 100755 PDAFT/env create mode 100755 PDAFT/run create mode 100755 PDAFT/setup diff --git a/PDAFT/.gitignore b/PDAFT/.gitignore new file mode 100644 index 0000000..83aad73 --- /dev/null +++ b/PDAFT/.gitignore @@ -0,0 +1,3 @@ +bin/*.tar.gz +data +wine diff --git a/PDAFT/README.md b/PDAFT/README.md new file mode 100644 index 0000000..73fed86 --- /dev/null +++ b/PDAFT/README.md @@ -0,0 +1,3 @@ +#### PDAFT + +Extract PDAFT v7.10 into `data`, along with the newest version of PD-LOADER (2.6.5a). Then run `setup`. diff --git a/PDAFT/bin/VC_redist.x64.exe b/PDAFT/bin/VC_redist.x64.exe new file mode 100644 index 0000000..2dd4dd0 Binary files /dev/null and b/PDAFT/bin/VC_redist.x64.exe differ diff --git a/PDAFT/bin/VC_redist.x86.exe b/PDAFT/bin/VC_redist.x86.exe new file mode 100644 index 0000000..09803e0 Binary files /dev/null and b/PDAFT/bin/VC_redist.x86.exe differ diff --git a/PDAFT/env b/PDAFT/env new file mode 100755 index 0000000..31c1327 --- /dev/null +++ b/PDAFT/env @@ -0,0 +1,7 @@ +#!/bin/sh + +export WINEPREFIX="$(pwd)/wine" +export WINEARCH=win64 +export WINEDLLOVERRIDES='dnsapi.dll=n,b' +export WINEESYNC=1 +export WINEDEBUG=-all diff --git a/PDAFT/run b/PDAFT/run new file mode 100755 index 0000000..9374dff --- /dev/null +++ b/PDAFT/run @@ -0,0 +1,5 @@ +#!/bin/sh + +source ./env + +cd data && wine ./diva.exe diff --git a/PDAFT/setup b/PDAFT/setup new file mode 100755 index 0000000..417fdcb --- /dev/null +++ b/PDAFT/setup @@ -0,0 +1,7 @@ +#!/bin/sh + +source ./env + +winetricks --force dotnet48 +wine ./bin/VC_redist.x86.exe +wine ./bin/VC_redist.x64.exe -- cgit v1.2.3-freya