Jump to content

createRadarArea bug???


Xeno

Recommended Posts

Posted

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?

Posted

Post your radar area code, I'm sure you're using negative values.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

Yes, I was. ( It was not fitting correctly so I made it -200) - Thanks for the help.

One more thing,

outputChatBox('#FF0000hi", player, 255, 0, 0, true) 
 

Why does it not allow me to use the #FFFF00?

Posted

Is "player" a valid player element?

outputChatBox("#FF0000hi", player, 255, 0, 0, true) 

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

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

Posted
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 

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

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