Jump to content

Help with Marker


GamerDeMTA

Recommended Posts

Posted

My script doesn't work, it shows the marker but when I go to the marker I don't get teleported.

marker = createMarker ( -651.29998779297,954.29998779297,11.10000038147, "cylinder", 2, 0, 255, 0, 225 ) 
  
addEventHandler("onMarkerHit",marker, 
function (player) 
if (getElementType(player) == "player") then 
setElementPosition (player,-699.29998779297,964.09997558594,121.19999694824) 
      end 
end 
) 

Posted
marker = createMarker ( -651.29998779297,954.29998779297,11.10000038147, "cylinder", 2, 0, 255, 0, 225 ) 
  
addEventHandler("onMarkerHit",marker, 
function (hitElement) 
if (getElementType(hitElement) == "player") then 
setElementPosition (hitElement,-699.29998779297,964.09997558594,121.19999694824) 
      end 
end 
) 

Posted

Now it works, the script's type was as "client", sorry for taking ur time i changed to "server".

But also can you give me to put when you hit the marker a GUI with a "close" button for the player, and a sound?

Posted

Hmmm...use my code up ^ this one :

local marker = createMarker (x,y,z, "cylinder", 2, 0, 255, 0, 170 ) 
  
addEventHandler("onClientMarkerHit",marker,  
function ( player ) 
if ( player == localPlayer ) then 
guiSetVisible( Window,true ) 
showCursor( true ) 
   end 
end 
) 

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