Masa Posted June 19, 2013 Share Posted June 19, 2013 How do I remove the blips for players at the minimap? I'm planning to create a war server, and I don't like seeing other players on the map, especially when trying to do something stealth. Link to comment
iMr.3a[Z]eF Posted June 19, 2013 Share Posted June 19, 2013 did you search of "blip" in Admin Panel? Link to comment
Masa Posted June 19, 2013 Author Share Posted June 19, 2013 Yep, but it's not removing them Link to comment
iMr.3a[Z]eF Posted June 19, 2013 Share Posted June 19, 2013 well i think you have to remove it by code or i'm sure there is resource for Blips in A-Panel Link to comment
PaiN^ Posted June 19, 2013 Share Posted June 19, 2013 addEventHandler( "onResourceStart", resourceRoot, function( ) for k,v in ipairs( getElementsByType( "player" ) ) do for K,V in ipairs( getAttachedElements( v ) ) do if getElementType( V ) == "blip" then destroyElement( V ) end end end end ) and just make sure no resource is making any blips on players . Link to comment
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