Jump to content

createRadarArea bug???


Xeno

Recommended Posts

I was just flying around in my jetpack and suddenly noticed that createRadarArea is bugged... Look:

(Btw, look at the mini map in the images -_-)

How it normally is:

23koi94.png

I turn the camera slightly and this is what it turns into:

8wyurm.png

How can I fix this? Am I doing something wrong?

Link to comment
function greenzoneEnter ( element, matchingDimension, thePlayer, player) 
        outputChatBox('#FF0000*ROAM: #FFFF00Login for your kills and stats to be saved', thePlayer, 255, 0, 0, true) 
 local t = getElementType( element ) 
if t == "player" then 
    elseif t == "ped" then 
        killPed ( element ) 
    end 
end 

Thats the script... It kills Peds when they try to enter the col.

Link to comment
function greenzoneEnter ( element ) 
    local t = getElementType( element ) 
    if (t == "player") then 
        outputChatBox('#FF0000*ROAM: #FFFF00Login for your kills and stats to be saved', element, 255, 0, 0, true) 
    elseif (t == "ped") then 
        killPed ( element ) 
    end 
end 

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