how do you set de tex-coordinates?
Every vertex that you create or load has at least one set of texture coordinates. If you are manually creating vertices, then you must manually specify the texture coordinates of each vertex.
wether it will be clamped or repeated, and on which axis
The material has a
EMF_TEXTURE_WRAP flag that you can use to control this. There is one flag per texture per material.
And what if you want to use many textures on the same model
You use mesh buffers. All vertices in a mesh buffer share the same material flags. The material flags includes textures, so those vertices use the same textures. If you want a group of vertices to use a different texture, then you create a new mesh buffer, set that mesh buffers material to the other texture, and you add vertices to that buffer.
i changed the woman's model with the dwarven model and its axe gets the same texture
That is because the axe material and vertices are stored in its own mesh buffer. This keeps them seperate from the vertices for the actual dwarf model.
Travis