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?
[480339] Part=1 Mesh0=480330 Texture0=480335 MixTex0=0 MixOpt0=0 Asb0=5 Adb0=6 Material0=default
410509=c3/mesh/410509.c3
410509=c3/texture/410509.dds
Quote:
ok that's easy ... first of all open weapon .ini file ... search for the weapon ID ... u'll find it like this
now ... those 2 numbers are links to the files :Code:[480339] Part=1 Mesh0=480330 Texture0=480335 MixTex0=0 MixOpt0=0 Asb0=5 Adb0=6 Material0=default
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 :
or this :Code:410509=c3/mesh/410509.c3
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
thanks, i saw what i was wrong looking for mesh and textures :DQuote:
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