Jump to content
  • 0

underground mta race


blubb

Question

hey,

is there a possibility to change the underground (part under the real gta map) as it was in mta:race? I need that for some maps that don't work anymore. back then you could slide at the lowest level that was possible :) but now you fall deeper and deeper and then you are suddenly back to the surface in mta 1.x :roll:

Link to comment

5 answers to this question

Recommended Posts

  • 0

You meant the barrier under San Andreas? Yup, that's not possible anymore (that's annoying for some maps like Area 51 interior).

By the way, you can always script this, here's an example:

  
function onClientRender () 
   x, y, z = getElementPosition ( getLocalPlayer() ) 
   if z < -10 then 
         setElementPosition ( getLocalPlayer(), x, y, 9 ) 
    end 
end 
addEventHandler ( "onClientRender", root, onClientRender ) 
  

That's not the best way but it's an example.

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...