The VG Resource
Pokémon Model Ripping Project - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: The Resources (https://www.vg-resource.com/forum-109.html)
+--- Forum: The Models Resource (https://www.vg-resource.com/forum-111.html)
+---- Forum: Project Organization (https://www.vg-resource.com/forum-119.html)
+---- Thread: Pokémon Model Ripping Project (/thread-25872.html)



RE: Pokémon 3DS/Switch Model Ripping Project - Random Talking Bush - 11-15-2020

(11-15-2020, 02:06 PM)ZeldaOfTriforce Wrote: Hello! When I extract a .gfpak with switch tools and try to import a .gfbmdl with RandomTBush Script It shows error and does not import the model How I can fix this?
When you export a GFBMDL file with Switch Toolbox, apparently it gets rewritten in such a way that my script doesn't expect it, instead of keeping it in its original state. But since it is still a functional model file, then that means it's definitely an issue with my script and not the model file itself, so I'll look into fixing that sometime.


RE: Pokémon 3DS/Switch Model Ripping Project - Demonslayerx8 - 11-15-2020

ye, I've also noticed that sometimes vertex colors doesn't import properly either if exported from Toolbox.


RE: Pokémon 3DS/Switch Model Ripping Project - The Forestbird - 11-20-2020

Hey could you explain me where I can get the Models from the Let's Go Map or how I can get them myself?


RE: Pokémon 3DS/Switch Model Ripping Project - TerusTheBird - 11-26-2020

Such a shame that so many tools are windows only, as I use linux and could probably help.


RE: Pokémon 3DS/Switch Model Ripping Project - Arachnos Expresso - 11-26-2020

UPDATE: I actually managed to figure it out, I just had to upgrade Blender to any version from 2.83 onwards, since they implemented the UVW Xform Modifier from 3DS Max, it works wonders Smile


RE: Pokémon 3DS/Switch Model Ripping Project - devilxlord - 12-01-2020

hi im new here. not sure if you're still doing request but i would like aegislash from pokemon swsh and aegislash from pokken tournament.  Big Grin


RE: Pokémon 3DS/Switch Model Ripping Project - DogToon64 - 12-02-2020

(09-14-2014, 04:15 AM)Random Talking Bush Wrote: Requests for me to rip and upload, and only up to 3 requests per person at a time -- once I get those done, you're welcome to ask for some more. Just keep in mind I'll be working on these during my spare time, so don't expect 'em right away (way too outdated, ignore this).

In short: No


RE: Pokémon 3DS/Switch Model Ripping Project - Random Talking Bush - 12-02-2020

I mean, people can still ask, but I'm not honoring any requests at the moment since I've got too many other things to deal with currently.


RE: Pokémon 3DS/Switch Model Ripping Project - rickypow - 01-09-2021

Does Random Talking Bush's Maxscript work on importing Let's Go field maps to 3DSMax? Whenever I try to import the GFBMDL file through the script, I'm getting an error similar to "--Unknown property: "twoSided" in rockmask01_comTonguehysical_Material"


RE: Pokémon 3DS/Switch Model Ripping Project - Random Talking Bush - 01-09-2021

(01-09-2021, 04:34 PM)rickypow Wrote: Does Random Talking Bush's Maxscript work on importing Let's Go field maps to 3DSMax? Whenever I try to import the GFBMDL file through the script, I'm getting an error similar to "--Unknown property: "twoSided" in rockmask01_com:Physical_Material"
Yep, it's a known problem with 3DS Max 2021 specifically. I'll work on fixing that soon.


RE: Pokémon 3DS/Switch Model Ripping Project - antivirose - 01-11-2021

hi there.
So i was trying to import the gfbmdl on 3dsmax 2021 and encounter the "Unknown property" error. After playing around with your code, i find out that error is on this part of the code (the print MatData_array):

Code:
multimat = MultiMaterial()
multimat.name = g
multimat.numsubs = MatNameCount
for m = 1 to MatNameCount do(
mat = multimat.materialList[m]
mat.name = MatData_array[m].MatName as string
mat.showinviewport = true
[b]mat.twosided = false[/b]
tm = Bitmaptexture filename:(p + MatData_array[m].MatCol0 + ".png")
tm.alphasource = 0
[b]mat.diffuseMap = tm[/b]
[b]mat.opacityMap = tm[/b]
mat.opacityMap.monoOutput = 1

So i tried to modify in order to work and i got something like this :

Code:
multimat = MultiMaterial()
multimat.name = g
multimat.numsubs = MatNameCount
for m = 1 to MatNameCount do(
mat = multimat.materialList[m]
mat.name = MatData_array[m].MatName as string
mat.showinviewport = true
twosided = false
tm = Bitmaptexture filename:(p + MatData_array[m].MatCol0 + ".png")
tm.alphasource = 0
diffuseMap = tm
opacityMap = tm
opacityMap.monoOutput = 1
i just disable the the "mat" and the code worked, not as according obviously.
[Image: w1F2T3W.jpg]
thank you for your great work  Wink


RE: Pokémon 3DS/Switch Model Ripping Project - ÿZEROLIGHT - 01-14-2021

Since he have effect files from Smash Ultimate ripped, what about effect files from Pokemon 3DS and Switch games?
There is a possibility that it uses the same exact format but I do not know this for sure.

I love visual effects and using them in MUGEN characters, it adds some unique style.

It must be really difficult to rip effects from any game, if that's why they are hardly ever ripped. Nerd


RE: Pokémon 3DS/Switch Model Ripping Project - Sirlee41 - 01-28-2021

I followed the tut using Switch toolbox, and I was able to rip the map. But when I exported the scene, there wasnt any textures or materials at all. After searching, I could see that there is material folder keeping lots of files with the texture name and texture mapping. However, those are json files and i dont know what to do with those to get materials attach to the mesh??? ?


RE: Pokémon 3DS/Switch Model Ripping Project - Arachnos Expresso - 02-02-2021

So i´ve been working on the SWSH Tyranitar model, and am currently stuck with something. Does anyone know how to clear the seams in his face and arms?


RE: Pokémon 3DS/Switch Model Ripping Project - Knowdice - 02-11-2021

(02-02-2021, 12:59 PM)Arachnos Expresso Wrote: So i´ve been working on the SWSH Tyranitar model, and am currently stuck with something. Does anyone know how to clear the seams in his face and arms?

Correct me if i'm wrong, But aren't they a part of the texture? If they are you might have some luck with GIMPs Clone stamp tool.