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

avengers playground

Post questions about game models here, or help out others!
justshopatkmart43
advanced
Posts: 49
Joined: Tue Nov 06, 2012 7:57 am
Has thanked: 10 times
Been thanked: 15 times

avengers playground

Post by justshopatkmart43 »

Does anyone know which of these file types is the true model file?

I'm not sure if the models are in the .bin files, or the .lulmodel files

Any help would be appreciated
Last edited by justshopatkmart43 on Mon Apr 29, 2019 9:14 am, edited 4 times in total.
Acewell
VIP member
VIP member
Posts: 1330
Joined: Wed Nov 05, 2008 12:16 pm
Has thanked: 2710 times
Been thanked: 884 times

Re: Avengers playground AR

Post by Acewell »

yep the models are in the lullmodel files. :D
metronome-ironman_lullmodel.PNG
and you can convert all the ktx textures to png with PVRTexToolCLI and this bat file contents

Code: Select all

for %%G in ("*.ktx") do PVRTexToolCLI -i "%%G" -o "%%~nG.dds" -d "%%~nG.png" -f r8g8b8a8
You do not have the required permissions to view the files attached to this post.
justshopatkmart43
advanced
Posts: 49
Joined: Tue Nov 06, 2012 7:57 am
Has thanked: 10 times
Been thanked: 15 times

Re: Avengers playground AR

Post by justshopatkmart43 »

Acewell wrote:yep the models are in the lullmodel files. :D
metronome-ironman_lullmodel.PNG
and you can convert all the ktx textures to png with PVRTexToolCLI and this bat file contents

Code: Select all

for %%G in ("*.ktx") do PVRTexToolCLI -i "%%G" -o "%%~nG.dds" -d "%%~nG.png" -f r8g8b8a8
Wow, thanks for the info on the textures. About the models, will they all work on those settings you have in the screenshot, or does it differ per model, I'm particularly interested in the hulk model?


edit: I ran the bat file with the ktx file, the PVRTexToolCLI.exe in the same folder and it made a small png file with nothing in it, and a corrupt dds file. Did you try with these textures?
Acewell
VIP member
VIP member
Posts: 1330
Joined: Wed Nov 05, 2008 12:16 pm
Has thanked: 2710 times
Been thanked: 884 times

Re: Avengers playground AR

Post by Acewell »

Jaydenthetank wrote:About the models, will they all work on those settings you have in the screenshot, or does it differ per model, I'm particularly interested in the hulk model?
all settings are the same except the step 1 and 3 start addresses and counts.
different models rarely have identical number of vertices and faces.
Jaydenthetank wrote:Did you try with these textures?
trick question? of course i did and they converted fine. (:
justshopatkmart43
advanced
Posts: 49
Joined: Tue Nov 06, 2012 7:57 am
Has thanked: 10 times
Been thanked: 15 times

Re: Avengers playground AR

Post by justshopatkmart43 »

Acewell wrote:
Jaydenthetank wrote:About the models, will they all work on those settings you have in the screenshot, or does it differ per model, I'm particularly interested in the hulk model?
all settings are the same except the step 1 and 3 start addresses and counts.
different models rarely have identical number of vertices and faces.
Jaydenthetank wrote:Did you try with these textures?
trick question? of course i did and they converted fine. (:
Not a trick question, are you able to send your .exe file, I tried one from github which is quite old, and 32/64 bit ones from the power vr kit. Does it need something installed to run correctly?
Acewell
VIP member
VIP member
Posts: 1330
Joined: Wed Nov 05, 2008 12:16 pm
Has thanked: 2710 times
Been thanked: 884 times

Re: Avengers playground AR

Post by Acewell »

....
Last edited by Acewell on Tue Dec 18, 2018 4:23 am, edited 1 time in total.
justshopatkmart43
advanced
Posts: 49
Joined: Tue Nov 06, 2012 7:57 am
Has thanked: 10 times
Been thanked: 15 times

Re: Avengers playground AR

Post by justshopatkmart43 »

Acewell wrote:
Jaydenthetank wrote:are you able to send your .exe file

Code: Select all

https://www.mediafire.com/file/8lq6hc8b93jjwp3/PVRTexToolCLI.zip/file

Code: Select all

PVRTexToolCL version 4.20
SDK Version: 18.1@5086772
PVRTexLib 4.20 | JpegLib version 8` | LibPNG version 1.5.12
Thanks I found the problem, I just needed to put everything in the same folder then it works without having to install anything. The model part is still tricky though, is there a tutorial you recommend to follow for hex2obj so I can extract the hulk model?
Last edited by justshopatkmart43 on Mon Apr 29, 2019 7:39 am, edited 1 time in total.
Acewell
VIP member
VIP member
Posts: 1330
Joined: Wed Nov 05, 2008 12:16 pm
Has thanked: 2710 times
Been thanked: 884 times

Re: avengers playground ar

Post by Acewell »

no tutorial is going to help you here, the info you need is acquired from recognizing patterns and some trial and error.
you can use the given iron man sample to see what you need to look for in the other lullmodel files.
justshopatkmart43
advanced
Posts: 49
Joined: Tue Nov 06, 2012 7:57 am
Has thanked: 10 times
Been thanked: 15 times

Re: avengers playground ar

Post by justshopatkmart43 »

Acewell wrote:no tutorial is going to help you here, the info you need is acquired from recognizing patterns and some trial and error.
you can use the given iron man sample to see what you need to look for in the other lullmodel files.
Thanks for the info, managed to get hulk based on what you had with iron man, but the others don't seem to be so easy. Does the pattern always have to start with 1 2 3 on the first line?
Last edited by justshopatkmart43 on Sun Apr 07, 2019 1:30 pm, edited 2 times in total.
Acewell
VIP member
VIP member
Posts: 1330
Joined: Wed Nov 05, 2008 12:16 pm
Has thanked: 2710 times
Been thanked: 884 times

Re: avengers playground ar

Post by Acewell »

Jaydenthetank wrote:Does the pattern always have to start with 1 2 3 on the first line?
not always, but in these samples it does.
okoye is the only character that uses dword indices instead of word.
metronome-okoye.lullmodel.PNG
You do not have the required permissions to view the files attached to this post.
justshopatkmart43
advanced
Posts: 49
Joined: Tue Nov 06, 2012 7:57 am
Has thanked: 10 times
Been thanked: 15 times

Re: avengers playground ar

Post by justshopatkmart43 »

Acewell wrote:
Jaydenthetank wrote:Does the pattern always have to start with 1 2 3 on the first line?
not always, but in these samples it does.
okoye is the only character that uses dword indices instead of word.
metronome-okoye.lullmodel.PNG
Managed to get nebula, I got the pattern on captain america to start with 123, and followed the same structure you used with iron man, and did the indices count calculation correct, but there is no mesh? I apologize for the questions, but this hex software is new to me so idk what I'm doing wrong. You have been a big help!
Last edited by justshopatkmart43 on Sun Apr 07, 2019 1:30 pm, edited 2 times in total.
Acewell
VIP member
VIP member
Posts: 1330
Joined: Wed Nov 05, 2008 12:16 pm
Has thanked: 2710 times
Been thanked: 884 times

Re: avengers playground ar

Post by Acewell »

you almost had it, here is captain america settings :D
metronome-captainamerica.lullmodel.PNG
You do not have the required permissions to view the files attached to this post.
silkroad820420
ultra-n00b
Posts: 7
Joined: Tue Jan 22, 2019 12:52 pm
Has thanked: 1 time

Re: avengers playground ar

Post by silkroad820420 »

Acewell wrote:you almost had it, here is captain america settings :D
metronome-captainamerica.lullmodel.PNG
hi,can you show the hulk settings? please
silkroad820420
ultra-n00b
Posts: 7
Joined: Tue Jan 22, 2019 12:52 pm
Has thanked: 1 time

Re: Avengers playground AR

Post by silkroad820420 »

Acewell wrote:yep the models are in the lullmodel files. :D
metronome-ironman_lullmodel.PNG
and you can convert all the ktx textures to png with PVRTexToolCLI and this bat file contents

Code: Select all

for %%G in ("*.ktx") do PVRTexToolCLI -i "%%G" -o "%%~nG.dds" -d "%%~nG.png" -f r8g8b8a8
how to use this bat file ?

When I open .ktx files, PVRtextool seeing message: "Please check that astcenc.exe is in path" ,how to fix that?
justshopatkmart43
advanced
Posts: 49
Joined: Tue Nov 06, 2012 7:57 am
Has thanked: 10 times
Been thanked: 15 times

Re: Avengers playground AR

Post by justshopatkmart43 »

silkroad820420 wrote:
Acewell wrote:yep the models are in the lullmodel files. :D
metronome-ironman_lullmodel.PNG
and you can convert all the ktx textures to png with PVRTexToolCLI and this bat file contents

Code: Select all

for %%G in ("*.ktx") do PVRTexToolCLI -i "%%G" -o "%%~nG.dds" -d "%%~nG.png" -f r8g8b8a8
how to use this bat file ?

When I open .ktx files, PVRtextool seeing message: "Please check that astcenc.exe is in path" ,how to fix that?
I gave the answer to that error in the thread
Post Reply