Jump to content

[HELP] Replacing map


Recommended Posts

Good day peeps, I just found a file which contains a cool looking map, which I was thinking of adding to my server. (f11 map) The problem is that this file has 143 .txd's (radar00.txd, radar01.txd etc) which contain a little part of the map. What code do I need to use to replace the map with those .txd's or with the .png from them?

Link to comment
  • Moderators

F11 map probably can only be changed by the user itself. (replacing files in his own mta folder)

For the radar >

You could try to find the texture name/names:

https://wiki.multitheftauto.com/wiki/Sha ... ture_names

and apply this simple shader:

//-- Declare the texture. These are set using dxSetShaderValue( shader, "Tex0", texture ) 
texture Tex0; 
  
technique simple 
{ 
    pass P0 
    { 
        //-- Set up texture stage 0 
        Texture[0] = Tex0; 
  
        //-- Leave the rest of the states to the default settings 
    } 
} 

https://wiki.multitheftauto.com/wiki/En ... rldTexture

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...