Jump to content

Marker triggers when flying over it


Miika

Recommended Posts

Posted

Hi,

I have a problem. When i fly over marker that i have created, it triggers my stuff even if i don't hit the marker. Same thing happens if i go under it.

Here's part of my code:

for i=1, #drugs do 
    local co = split(drugs[i][2], ", ") 
    local col = split(drugs[i][3], ", ") 
    marker[i] = createMarker(co[1], co[2], co[3]-1, "cylinder", 1.5, 0, 255, 255, 100) 
    setElementInterior(marker[i], 2) 
    setElementData(marker[i], "drugsystem:marker", i) 
end 

addEventHandler("onClientMarkerHit", resourceRoot, 
function(hitElement, matchingDimension) 
    if matchingDimension == true then 
        if not (getElementData(source, "drugsystem:marker") == false) then 
            if (getElementType(hitElement) == "player") then 
                if not (isPedInVehicle(hitElement)) then 
                    if (guiGetVisible(window["gui"]) == false) then 
                        markerObject = source 
                        guiSetVisible(window["gui"], true) 
                        showCursor(true) 
                        guiSetText(label["drugid"], "Drug type: " .. drugs[getElementData(source, "drugsystem:marker")][1]) 
                        guiSetText(label["duration"], "Creation time: " .. drugs[getElementData(source, "drugsystem:marker")][4] .. " seconds") 
                        guiSetText(label["effect"], "Effect: " .. drugs[getElementData(source, "drugsystem:marker")][5]) 
                    end 
                end 
            end 
        end 
    end 
end 
) 

Real motorbike backflip / frontflip script: https://forum.mtasa.com/viewtopic.php?f=108&t=98191

  • Moderators
Posted
local _, _, z1 = getElementPosition (hitElement) 
local _, _, z2 = getElementPosition (source) 
if math.max(z1-z2, z2-z1) < 3 then 
  
end 

It does have one bug. If you fall from the sky, it will not trigger. Because you already triggered it when you entered the sky.

Or use as detection a colshape. (you don't have to delete the marker)

https://wiki.multitheftauto.com/wiki/CreateColSphere

@Miika822

as you said... I was still replying, when you did answer your own question.

Do you want to improve your Lua programming skills and make less mistakes?   Start with Lua Language Server!   🙀

 

  Useful functions  3x 

  Tutorials  4x 

 

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