Jump to content

How to remove blip


Perfect

Recommended Posts

Posted

Hi All, How to remove blip via command (I mean my own blip not others)

Multi Theft Auto Player since middle of 2011.

Everybody want to act Crazy/Smart/Intelligent/Different/Unique/Innocent and Thats why I am Perfect.

Posted

Hello Perfect,

lets assume you create your blip. Create it like this.

  
perfectBlip = createBlip ( 0, 0, 0 ) 
  
-- now destroy it 
destroyElement(perfectBlip) 
  

And destroy it with destroyElement.

http://www.sincitygaming.net - The next generation of gaming!

SinCity Gaming | UltiRace 24/7 - 188.165.199.162:22003

SinCity Gaming | Roleplay Gaming - Beta soon!

SinCity Gaming | Zombie Mode + - 188.165.199.162:22005

Instead of using ip: 188.165.199.162 you can use: sincitygaming.net

Posted
function blipper () 
local perfectBlip = createBlip (sintax) 
destroyElement (perfectBlip) 
addEvent ("onPlayerCommand", true) 
addCommandHandler("hiddeblip", blipper) 

i think that it not will work...

My scripts: toptimes on scoreboard (server21)

Screen on login(scren)

Score on scoreboard (score)

Posted
function blipper () 
local perfectBlip = createBlip (sintax) 
destroyElement (perfectBlip) 
addEvent ("onPlayerCommand", true) -- Why are you creating an event ;o? 
addCommandHandler("hiddeblip", blipper) 

i think that it not will work...

Anyways is it a blip you had created with a script, or the normal blip attached to you player?

Posted
addCommandHandler ( "destroyblip", 
    function ( thePlayer ) 
        for index, element in ipairs ( getAttachedElements ( thePlayer ) ) do 
            if ( getElementType ( element ) == "blip" ) then 
                destroyElement ( element ) 
            end 
        end 
    end 
) 

That'll destroy ANY blip attached to the player who uses the /destroyblip command.

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

Thnx everyone but i also need create blip by command, anyway Thnx so much all!!!

EDIT: How to get Blip back ?

Multi Theft Auto Player since middle of 2011.

Everybody want to act Crazy/Smart/Intelligent/Different/Unique/Innocent and Thats why I am Perfect.

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