Xeno Posted January 22, 2012 Posted January 22, 2012 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: I turn the camera slightly and this is what it turns into: How can I fix this? Am I doing something wrong?
Castillo Posted January 22, 2012 Posted January 22, 2012 Post your radar area code, I'm sure you're using negative values.
Xeno Posted January 22, 2012 Author Posted January 22, 2012 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?
Castillo Posted January 22, 2012 Posted January 22, 2012 Is "player" a valid player element? outputChatBox("#FF0000hi", player, 255, 0, 0, true)
Xeno Posted January 22, 2012 Author Posted January 22, 2012 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.
Castillo Posted January 22, 2012 Posted January 22, 2012 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now