View Single Post
  #105  
Old 01-20-2018, 09:33 PM
Zaela Zaela is offline
Sarnak


Join Date: Jul 2014
Posts: 319
Default

Quote:
Originally Posted by loramin [You must be logged in to view images. Log in or Register.]
Not to sound ungrateful, but it looks like the executables don't work so well on Linux with WINE:

> ~/Desktop/EverQuest $ wine patch_s3d_textures.bat
wine: Bad EXE format for Z:\home\me\Desktop\EverQuest\patch_s3d_textures.ba t.

> ~/Desktop/EverQuest $ wine transpfx.exe
transpfx.exe: Invalid input or no file found
For future reference: .bat is not an executable format in the first place, they are scripts interpreted by cmd.exe. So you'd need to have wine run cmd.exe, then run patch_s3d_textures.bat at the cmd.exe prompt:

Code:
wine cmd.exe
patch_s3d_textures.bat
Based on your pasted output transpfx.exe ran fine under Wine, you just didn't give it any input. The .bat script just calls transpfx.exe repeatedly with different input strings.
Reply With Quote