okay with new transparency and all how does one apply it and use it?<!--emo&???--><img src='http://www.unknownworlds.com/forums/html/emoticons/confused.gif' border='0' style='vertical-align:middle' alt='confused.gif'><!--endemo-->
Get the dll files. Get them from the T2K site. <a href='http://t2k.neotech.cc/' target='_blank'>http://t2k.neotech.cc/</a>
Then in your model, make a texture you want as the transparent part of your skin, if you want complete see-through then make the areas on it you want see-through to be the last color in the palette of the bitmap image. Otherwise all you need to do is adjust how bright the texture is brighter is more transparent IIRC. Then in the .qc file, you'll need this line:
$texrendermode "skin.bmp" "additive" -that is for additve transparency where skin.bmp is the name of the bitmap file.
$texrendermode "skin.bmp" "masked" -that is for the last color in the palette of the specified skin to be see-through.
Comments
Then in your model, make a texture you want as the transparent part of your skin, if you want complete see-through then make the areas on it you want see-through to be the last color in the palette of the bitmap image. Otherwise all you need to do is adjust how bright the texture is brighter is more transparent IIRC. Then in the .qc file, you'll need this line:
$texrendermode "skin.bmp" "additive"
-that is for additve transparency where skin.bmp is the name of the bitmap file.
$texrendermode "skin.bmp" "masked"
-that is for the last color in the palette of the specified skin to be see-through.
Hope this helps.