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

Martial Empires / Seven Souls

Post questions about game models here, or help out others!
User avatar
Rimbros
ultra-veteran
ultra-veteran
Posts: 495
Joined: Fri Jul 09, 2010 12:23 am
Has thanked: 41 times
Been thanked: 16 times

Re: Martial Empires / Seven Souls

Post by Rimbros »

Thanks finale, i little confused i open the textureinfo.txt inside of the folder Martial Empires\vfs\char\texture and i get a list but all the rows are same i cant found the rerence for meshes, this its the textures names but i cant see for wath model are each texture, since the models have diferent numbers but all start with g2 like g200002620.msh.

Texture Info ID Diffuse Map Mask Map Color Map Normal Map
402100200 402100200 m402100200 c402100200 n402100200
402100201 402100201 m402100201 c402100201 n402100201
402100300 402100300 m402100300 c402100300 n402100300

EDIT: ok i found wath happend, if u delete the 2 first characters of the Texture info ID u get the name of the mesh asigned to this texture.
Like Texture ID 402100200 = 2100200 (mesh name)
Texture ID 402100201 = 2100201 (mesh name)
Renders Art by Rimbros
http://s303.photobucket.com/albums/nn12 ... E/Renders/

Personal Game repository samples, send PM
finale00
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 2382
Joined: Sat Apr 09, 2011 1:22 am
Has thanked: 170 times
Been thanked: 307 times

Re: Martial Empires / Seven Souls

Post by finale00 »

Ya, that's how it works. Pretty interesting way to store data lol
User avatar
Rimbros
ultra-veteran
ultra-veteran
Posts: 495
Joined: Fri Jul 09, 2010 12:23 am
Has thanked: 41 times
Been thanked: 16 times

Re: Martial Empires / Seven Souls

Post by Rimbros »

Plugin its working perfect now, thanks Finale its a greath job.
Renders Art by Rimbros
http://s303.photobucket.com/albums/nn12 ... E/Renders/

Personal Game repository samples, send PM
inspiredgurl
advanced
Posts: 46
Joined: Mon Oct 31, 2011 10:07 pm
Has thanked: 4 times
Been thanked: 13 times

Re: Martial Empires / Seven Souls

Post by inspiredgurl »

is there a way to get the textures to show on the LOS models in noesis? :) i extracted all textures but it won't show. or maybe i'm missing something.

Here's an example:

Image
Image
finale00
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 2382
Joined: Sat Apr 09, 2011 1:22 am
Has thanked: 170 times
Been thanked: 307 times

Re: Martial Empires / Seven Souls

Post by finale00 »

You have to load the texture-info file, but I don't want to have to load it everytime you view a model since it's a large file so I didn't write code to auto-assign.

You can manually assign textures if you want.
inspiredgurl
advanced
Posts: 46
Joined: Mon Oct 31, 2011 10:07 pm
Has thanked: 4 times
Been thanked: 13 times

Re: Martial Empires / Seven Souls

Post by inspiredgurl »

Thanks for the reply finale. :) I didn't know noesis could load txt files, cool! I found a post of yours discussing about how to use the texture info file: viewtopic.php?f=33&t=4582&start=1080


i don't mean to sound slow, but idk how to get noesis to find the textureinfo file. is there an option i'm missing that loads it, maybe? :(
Image
User avatar
Keygen
n00b
Posts: 15
Joined: Fri Aug 28, 2015 7:36 pm
Location: Spain
Has thanked: 4 times
Been thanked: 5 times

Re: Martial Empires / Seven Souls

Post by Keygen »

Hello comrades, i need some help to get the mesh from the VFS

-----
My case is:

>> Extracted contain of chars.vfs using cmd (offzip.exe -a chars.vfs "C:\Samples" 0)

>> The extracted data extension is (.dat)

-----

At this point im stuck, how do i obtain the mesh files from those file.dat?


Please could somebody help ?
Samurais in Heaven, Kings in Hell.
User avatar
Keygen
n00b
Posts: 15
Joined: Fri Aug 28, 2015 7:36 pm
Location: Spain
Has thanked: 4 times
Been thanked: 5 times

Re: Martial Empires / Seven Souls

Post by Keygen »

Hello again,

Finally i found the way to extract correctly those files.

Isnt using offzip, i used QuickBMS with this script:
---------------
#quickbms script
#from chrrox and aluigi
open FDDE VFS 0
open FDDE INF 1

get id longlong 1
get files long 1
goto 0x48 1
for i = 0 < files
getdstring name 0xD8 1
get ZIPPED long 1
get DUMMY long 1
get offset longlong 1
get zsize longlong 1
get size longlong 1
get TIMESTAMP longlong 1
get TIMESTAMP longlong 1
get TIMESTAMP longlong 1
if ZIPPED == 0
log name offset zsize
else
clog name offset zsize size
endif
next i
---------------

Thanks anyway :)
Samurais in Heaven, Kings in Hell.
User avatar
Keygen
n00b
Posts: 15
Joined: Fri Aug 28, 2015 7:36 pm
Location: Spain
Has thanked: 4 times
Been thanked: 5 times

Re: Martial Empires / Seven Souls

Post by Keygen »

Hello to open every mesh only need modify the script and put this line:

Code: Select all

msh = $s_*
select msh
skinMod = skin ()
addModifier msh skinMod
On the x2 parts where can find the "select msh"


:)
Samurais in Heaven, Kings in Hell.
User avatar
CriticalError
double-veteran
double-veteran
Posts: 678
Joined: Sun Jul 05, 2009 2:03 am
Has thanked: 104 times
Been thanked: 41 times

Re: Martial Empires / Seven Souls

Post by CriticalError »

Keygen wrote:Hello to open every mesh only need modify the script and put this line:

Code: Select all

msh = $s_*
select msh
skinMod = skin ()
addModifier msh skinMod
On the x2 parts where can find the "select msh"


:)
very interesting mate, but you can upload the full maxscript file attached here? really this would be great mate, many thanks for the discover thing.
User avatar
Keygen
n00b
Posts: 15
Joined: Fri Aug 28, 2015 7:36 pm
Location: Spain
Has thanked: 4 times
Been thanked: 5 times

Re: Martial Empires / Seven Souls

Post by Keygen »

CriticalError wrote:
Keygen wrote:Hello to open every mesh only need modify the script and put this line:

Code: Select all

msh = $s_*
select msh
skinMod = skin ()
addModifier msh skinMod
On the x2 parts where can find the "select msh"


:)
very interesting mate, but you can upload the full maxscript file attached here? really this would be great mate, many thanks for the discover thing.

Sure , here is
You do not have the required permissions to view the files attached to this post.
Samurais in Heaven, Kings in Hell.
User avatar
Keygen
n00b
Posts: 15
Joined: Fri Aug 28, 2015 7:36 pm
Location: Spain
Has thanked: 4 times
Been thanked: 5 times

Re: Martial Empires / Seven Souls

Post by Keygen »

We need new script that able us to import .msh without bones ,

it crash on main characters so i cant obtain the warrior or the others models,

Somebody could help on this?

Image

I tried use Noesis, it doesnt work to me.

I couldnt modify the script to ignore the error, would be good make a new script that import every mesh.
Samurais in Heaven, Kings in Hell.
User avatar
Keygen
n00b
Posts: 15
Joined: Fri Aug 28, 2015 7:36 pm
Location: Spain
Has thanked: 4 times
Been thanked: 5 times

Re: Martial Empires / Seven Souls

Post by Keygen »

Okey comrades, get ready to enjoy

i modify the script and the result is this:

Image


Here is the new script:
You do not have the required permissions to view the files attached to this post.
Samurais in Heaven, Kings in Hell.
User avatar
Keygen
n00b
Posts: 15
Joined: Fri Aug 28, 2015 7:36 pm
Location: Spain
Has thanked: 4 times
Been thanked: 5 times

Re: Martial Empires / Seven Souls

Post by Keygen »

Somebody know a way to open the map files?


I want to do a mod in GTA with 7souls Maps


Thanks
Samurais in Heaven, Kings in Hell.
User avatar
CriticalError
double-veteran
double-veteran
Posts: 678
Joined: Sun Jul 05, 2009 2:03 am
Has thanked: 104 times
Been thanked: 41 times

Re: Martial Empires / Seven Souls

Post by CriticalError »

you can upload samples or just remake a new topic for map files, because this one is to old and no one check them.
Post Reply