weapon's c3 and texture?

09/03/2011 19:07 U2_Caparzo#1
Hey everyone, i hope u can help me, i wanna know how can i know the texture and the mesh used by a weapon, i tried searching by mesh number in some files but i can't find them, any1 knows?
09/03/2011 20:23 misdo#2
ok that's easy ... first of all open weapon .ini file ... search for the weapon ID ... u'll find it like this

Code:
[480339]
Part=1
Mesh0=480330
Texture0=480335
MixTex0=0
MixOpt0=0
Asb0=5
Adb0=6
Material0=default
now ... those 2 numbers are links to the files :

3DTexture.ini and 3DObj.ini

Mesh0 = 3DObj.ini
Texture0 = 3DTexture.ini

search for the corresponding numbers in the suitable files ... u should find something like this :

Code:
410509=c3/mesh/410509.c3
or this :

Code:
410509=c3/texture/410509.dds

and that's the name and the path of the file ... fon't forget to hit Thanks Button ... my best regards

:D
09/05/2011 00:27 2slam#3
by decrypting the item type.dat

get the weapons id

like 420333 thats the id of the 130 sword

every texture use the same id by changing the last number to 5
like 420333>>> 420335

and the mesh changes the last number to 0

like 420333 >>> 420330

thats the best way i use

if u want to search garments

get its ID from itemtype.dat
then add that number to it

for the south cloud
182305

if u want for a small girl
then add this number at first 001
001182305

for big girl we add 002
for small male add 003
for big male we add 004

002182305 big female
003182305 small male
004182305 big male

the path for the textures is clientfolder/C3/texture
the path for the meshes is clientfolder/C3/mesh


hope u got it
09/10/2011 19:37 U2_Caparzo#4
Quote:
Originally Posted by misdo View Post
ok that's easy ... first of all open weapon .ini file ... search for the weapon ID ... u'll find it like this

Code:
[480339]
Part=1
Mesh0=480330
Texture0=480335
MixTex0=0
MixOpt0=0
Asb0=5
Adb0=6
Material0=default
now ... those 2 numbers are links to the files :

3DTexture.ini and 3DObj.ini

Mesh0 = 3DObj.ini
Texture0 = 3DTexture.ini

search for the corresponding numbers in the suitable files ... u should find something like this :

Code:
410509=c3/mesh/410509.c3
or this :

Code:
410509=c3/texture/410509.dds

and that's the name and the path of the file ... fon't forget to hit Thanks Button ... my best regards

:D
Quote:
Originally Posted by 2slam View Post
by decrypting the item type.dat

get the weapons id

like 420333 thats the id of the 130 sword

every texture use the same id by changing the last number to 5
like 420333>>> 420335

and the mesh changes the last number to 0

like 420333 >>> 420330

thats the best way i use

if u want to search garments

get its ID from itemtype.dat
then add that number to it

for the south cloud
182305

if u want for a small girl
then add this number at first 001
001182305

for big girl we add 002
for small male add 003
for big male we add 004

002182305 big female
003182305 small male
004182305 big male

the path for the textures is clientfolder/C3/texture
the path for the meshes is clientfolder/C3/mesh


hope u got it
thanks, i saw what i was wrong looking for mesh and textures :D