Important information: this site is currently scheduled to go offline indefinitely by end of the year.

star wars : starfighter .pmdl models

Post questions about game models here, or help out others!
CZW
veteran
Posts: 151
Joined: Thu May 05, 2005 3:15 pm
Has thanked: 117 times
Been thanked: 15 times

Re: star wars : starfighter .pmdl models

Post by CZW »

i have uninstall all, delete folder, and reinstall ...
it work now, thks
User avatar
Wobble
ultra-veteran
ultra-veteran
Posts: 584
Joined: Tue Jan 04, 2005 9:47 pm
Has thanked: 43 times
Been thanked: 112 times

Re: star wars : starfighter .pmdl models

Post by Wobble »

[out]
Acewell
VIP member
VIP member
Posts: 1330
Joined: Wed Nov 05, 2008 12:16 pm
Has thanked: 2710 times
Been thanked: 884 times

Re: star wars : starfighter .pmdl models

Post by Acewell »

wrote a bms script for fun to mimic what the sfdepak.exe does to extract pak and pmdl files, reimport should work too :D

Code: Select all

# script for QuickBMS http://aluigi.altervista.org/quickbms.htm

get BNAME basename
idstring "Europa Packfile"
goto 0x15
get TABLE_OFFSET long
get TABLE_SIZE long
get FILES long
goto TABLE_OFFSET
for i = 0 < FILES
	get NAME_SIZE byte
	get NAME string
	get OFFSET long
	get SIZE long
	get UNK long
	string NAME p= "%s\%s" BNAME NAME 
	log NAME OFFSET SIZE
next i
Post Reply