Autor |
|
|
Feeride Trash von Carl Warwick - Freeride Designs: |
|
|
Administrator 118 Beiträge - Gelegenheitsposter
|
|
|
Feeride Trash von Carl Warwick - Freeride Designs:
http://www.caiman.us/scripts/fw/f305.html
Download des Spiel:
http://dlxcaiman.net/dlx/thrash.zip
Das Spiel läuft in Windows 95, 98, 98SE, ME und im XP.
Problem war, das es im Windows 7 64 Bit Ultimate 64Bit nicht lief und immer eine Fehlermeldung kommt:
Run-time errror 429.
Mit Visual Basic Versionen hatte es keinerlei Fehler, sondern es lag daran, dass dieses Spiel im DirectX 7 programmiert ist.
Am Anfang hatte ich die Datei * dx7z.dll * in C:\Windows\System32 hinein kopiert, was zwar das Spiel startet, aber sobald im Single Race oder Trial Race anklickt kommt eine weitere Meldung:
Error Xfile loading
Unter Google nichts zu finden.
Also versuchte anhand DirectX 6.1 die Datei Dateiinfo zu starten, um zu sehen, was unter DirexctX 7 in 3D fehlte,
denn das Raumschiff in 3D fehlte.
http://www.oldversion.com.de/windows/directx-6-1
DirectX 7 in FAT32 kopieren und unter Kompatiblitätsmodus 98/ME anklicken und dann installieren.
Unter NTFS geht's leider nicht.
http://www.oldversion.com.de/windows/directx-7-0
Dort sah ich, das alle d3d* fehlten und hatte mir diese Dateien vom Netz heruntergeladen und im C:\Windows\System32 hinein kopiert.
Damit man nur das nicht alles per Hand kopiert, schrieb ich ein kleines Programm im Batch (Cmd) unter ADMINISTRATOR Modus (F8 beim Neustart drücken) und kann diese Dateien vorher vom Netz alle einzeln herunterladen:
http://de.dllyes.com/
dx7z.dll
DX7VB.DLL
dxapi.sys
d3dim.dll
d3dpmesh.dll
d3drm.dll
ddhelp.exe
Echo off
Color 1e
Echo Reparatur von Run-time error 429 bei dem Spiel Feeride Trash
Echo.
Echo Diese Seite hier half mir:
Echo https://techxoom.com/fix-runtime-error-429-activex...te-obje ct/
Echo.
Echo Kopiere Directx 7 dll Dateien in C:\Windows\System32 Ordner
Echo damit auch 3D bei Oldgames funktionieren
If Exist C:\Windows\System32\dx7z.dll GOTO DATEI1
Echo Kopiere dx7z.dll
Copy dx7z.dll C:\Windows\System32\*.*
:DATEI1
If Exist C:\Windows\System32\DX7VB.DLL GOTO DATEI2
Echo Kopiere DX7VB.DLL
Copy DX7VB.DLL C:\Windows\System32\*.*
:DATEI2
If Exist C:\Windows\System32\dxapi.sys GOTO DATEI3
Echo Kopiere dxapi.sys
Copy dxapi.sys C:\Windows\System\*.*
:DATEI3
If Exist C:\Windows\System32\d3dim.dll GOTO DATEI4
Echo Kopiere d3dim.dll
Copy d3dim.dll C:\Windows\System32\*.*
:DATEI4
If Exist C:\Windows\System32\d3dpmesh.dll GOTO DATEI5
Echo Kopiere d3dpmesh.dll
Copy d3dpmesh.dll C:\Windows\System32\*.*
:DATEI5
If Exist C:\Windows\System32\d3drm.dll GOTO DATEI6
Echo Kopiere d3drm.dll
Copy d3drm.dll C:\Windows\System32\*.*
:DATEI6
If Exist C:\Windows\System32\ddhelp.exe GOTO ENDCOPY
Echo Kopiere ddhelp.exe
Copy ddhelp.exe C:\Windows\System32\*.*
:ENDCOPY
Echo Un- und registiere diese Datei + klicke auf Ok
Regsvr32 /u "C:\Windows\System32\DX7VB.DLL"
Regsvr32 "C:\Windows\System32\DX7VB.DLL"
Echo.
Echo Un- und registiere die DAO360.DLL
Regsvr32 /u "C:\Program Files (x86)\Common Files\microsoft shared\DAO\DAO360.DLL"
Regsvr32 "C:\Program Files (x86)\Common Files\microsoft shared\DAO\DAO360.DLL"
Echo Fertig!
Echo Neustart des Computers
Pause
Start /ABOVENORMAL shutdown -r -t 00
Exit
Falls es bei Windows XP auch nicht laufen sollte, folgendes Batch Programm, was auch hilft:
Echo off
Color 1e
Echo Reparatur von Run-time error 429 bei dem Spiel Feeride Trash
Echo.
Echo Diese Seite hier half mir:
Echo https://techxoom.com/fix-runtime-error-429-activex...te-obje ct/
Echo.
Echo Kopiere Directx 7 dll Dateien in C:\Windows\System32 Ordner
Echo damit auch 3D bei Oldgames funktionieren
If Exist C:\Windows\System32\dx7z.dll GOTO DATEI1
Echo Kopiere dx7z.dll
Copy dx7z.dll C:\Windows\System32\*.*
:DATEI1
If Exist C:\Windows\System32\DX7VB.DLL GOTO DATEI2
Echo Kopiere DX7VB.DLL
Copy DX7VB.DLL C:\Windows\System32\*.*
:DATEI2
If Exist C:\Windows\System32\dxapi.sys GOTO DATEI3
Echo Kopiere dxapi.sys
Copy dxapi.sys C:\Windows\System\*.*
:DATEI3
If Exist C:\Windows\System32\d3dim.dll GOTO DATEI4
Echo Kopiere d3dim.dll
Copy d3dim.dll C:\Windows\System32\*.*
:DATEI4
If Exist C:\Windows\System32\d3dpmesh.dll GOTO DATEI5
Echo Kopiere d3dpmesh.dll
Copy d3dpmesh.dll C:\Windows\System32\*.*
:DATEI5
If Exist C:\Windows\System32\d3drm.dll GOTO DATEI6
Echo Kopiere d3drm.dll
Copy d3drm.dll C:\Windows\System32\*.*
:DATEI6
If Exist C:\Windows\System32\ddhelp.exe GOTO ENDCOPY
Echo Kopiere ddhelp.exe
Copy ddhelp.exe C:\Windows\System32\*.*
:ENDCOPY
Echo Un- und registiere diese Datei + klicke auf Ok
Regsvr32 /u "C:\Windows\System32\DX7VB.DLL"
Regsvr32 "C:\Windows\System32\DX7VB.DLL"
Echo.
Echo Un- und registiere die DAO360.DLL
Regsvr32 /u "C:\Programme\Gemeinsame Dateien\Microsoft Shared\DAO\DAO360.DLL"
Regsvr32 "C:\Programme\Gemeinsame Dateien\Microsoft Shared\DAO\DAO360.DLL"
Echo Fertig!
Echo Neustart des Computers
Pause
Start /ABOVENORMAL shutdown -r -t 00
Exit
Dann musste ich noch gutes feststellen, das Bluestacks (Emulator Android) dadurch die Grafik schneller darstellt.
Spiel Candy Rush läuft jetzt dadurch viel schneller, wenn alle APPS geladen sind.
(Taskmanager HD-Plus-Service.exe beobachten, wenn die % unter 30% geht, dann Candy Rush spielen)
Hier sieht man deutlich, das selbst hier die Grafik schneller abläuft, sowie in XP und auch in Windows 7.
Angeblich ist zwar bei DirectX 9.0c DirectX 7 vorhanden, aber nicht alle Dateien, um auch ältere Spiele zum Laufen zu bringen.
Dank meines Batch Programms brauche ich nicht Virtual PC zu starten, damit Feeride Trash läuft.
Gruß Jens
|
Alle NEWS über Hardware und Software.
Mein PC:
Mainboard: MSI P45D3 Platinum Bios Version 1.9 19.05.2011
CPU: Intel Core 2 Extreme Quad QX9770 4x3200MHz, übertaktet auf 4x3600MHz mit 1,31Volt (Einstellung RAM Takt 1:50 1200MHz)
FSB: 4x400MHz=1600MHz, übertaktet auf 4x450MHz=1800MHz
RAM=G.Skill Ripjaws 4x4GB PC3 12800-1600MHz 7-8-8-24-2N 1,50 Volt, Übertaktet auf 1,51 Volt 1600MHz 7-8-7-9-2N
Grafikkarte: AMD/ATI R9 280X Sapphire Toxic 6GB, GPU 1,1GHz, RAM 1,6GHz
Festplatte: 2x Samsung SSD PRO 860 1TB, Samsung SSD EVO 860 2TB,
USB Stick: CORSAIR Voyager GTX USB 3.0 256GB Class 10 Lesen 450MB/s, Schreiben 360MB/s (Mit Ebooster CACHE RAM)
Webcam: Vemus USB2.0 an USB 3.0 angeschlossen.
Laufwerke: LG Blu-Ray WH16NS60 Firmware 1.03 + LG Blu-Ray HL-BH16NS55 Firmware V1.03
RAM Firmware V1.03
Monitor: Samsung SyncMaster 2494 Flat 24 Zoll
Betriebsystem: Windows 7 Ultimate SP1 64Bit - Windows XP 32Bit Pro
|
Dieser Beitrag wurde 23 mal editiert, zuletzt von admin am 30.11.2018 - 22:48.
|
Beitrag vom 20.11.2018 - 10:59 |
|