How do you make your own texture for maps?

If you're looking for mapping help or you reckon you're a mapping guru, post your questions / solutions here

Moderator: Moderators

Post Reply
Danny

How do you make your own texture for maps?

Post by Danny »

Im trying to make a texture, i want to take one of the wall textures and put my name and my friends name on it so it'll be in the map im building, also how do you make your very own texture from scratch? Like if i were to use a picture i found on the net, how would i incorporate that into a texture that could be used as a texture in my map? Any help that could be offered would be great. Thanks.
: )
Private
Posts: 9
Joined: Mon Aug 12, 2002 6:17 am
Location: Right behind YOU!
Contact:

Post by : ) »

Ok first things first, convert the picture you made or picture you got off the net to a .tga format. Most image editing programs have a file converter. Put it into a folder called whatever you want. Put that folder in a folder called textures.Then copy this into notepad:

Code: Select all

textures/mytextures/picture //this is the path to your .tga file 
{
qer_keyword rock // This is the type of texture 
qer_keyword wall // This is the type of texture 
surfaceparm sand // THis is the debris type when you shoot the texture.
{
map textures/mytextures/picture.tga //this is the full path to the texture
depthWrite
rgbGen identity
}
{
map $lightmap
rgbGen identity
blendFunc GL_DST_COLOR GL_ZERO
depthFunc equal
}
}
The lines after a // just explain. you can delete them if you wish.
Then save that as picture.shader (picture being replaced with what you called texture. Then make a .pk3 (if you want) or place all of the folders in main. Hope this helped! :)
sincerely,

: )
Danny

Thanks soo much ;o)

Post by Danny »

Thanks for your help, very very much appreciated
Post Reply