Bully-Board

Bully Modding Section => Bully Modding => TUTORIALS => Topic started by: MadmaN on October 24, 2014, 10:30:47 PM

Title: How to add Blips
Post by: MadmaN on October 24, 2014, 10:30:47 PM
Here...this is from my own personal notes which I have shared this with a few people as well.

BlipAddXYZ(float X, float Y, float Z, integer, blipType, BlipObject)

Example:
Code: [Select]
BlipAddXYZ(-615.17401123047, -65.581802368164, 59.661098480225, 0, 0, 7)

The last number in the code above is the number to change to one of the following in the Blip Legend below.

Blip Legend:


Title: Re: How to add Blips
Post by: Mick3Mouse on October 25, 2014, 07:06:59 PM
Nice!

Now.. One small step for Bully modding,. One giant leap for Custom missions

Title: Re: How to add Blips
Post by: Unknownsoldier on October 25, 2014, 07:27:41 PM
^
Neil Armstrong One Small Step FIrst Walk on Moon (http://www.youtube.com/watch?v=HCt1BwWE2gA#)
Title: Re: How to add Blips
Post by: DaBOSS54320 on October 25, 2014, 08:01:27 PM
Nice tutorial, and straight to the point. I got 2 things to add though.

BlipChangeIcon can change the blip icon on the radar as well, after being created if necessary.
Also you missed the blue circle blip.

2 - Blue Circle
Title: Re: How to add Blips
Post by: MadmaN on October 25, 2014, 08:11:12 PM
I did not add every single blip. The reason for that is my notes are a mess and I couldn't find the main listing I made way back when so I used what I was able to remember off the top of my head.

Feel free to add to this topic and even expand it with what you know since it will help everyone more in the end.  8)
Title: Re: How to add Blips
Post by: SWEGTA on October 25, 2014, 08:12:09 PM
WIll this also add that little yellow marker on the ground?
Title: Re: How to add Blips
Post by: Mick3Mouse on October 25, 2014, 08:13:45 PM
No, If you use 0 it will only appear on the radar.
Title: Re: How to add Blips
Post by: SWEGTA on October 26, 2014, 06:59:36 AM
Let's say I use this:
BlipAddXYZ(x, y, z, 0, 0, 3)

Which of the 0's should I change and what effect will it have?
Title: Re: How to add Blips
Post by: Mick3Mouse on October 26, 2014, 07:36:42 AM
The last number in the code above is the number to change to one of the following in the Blip Legend below.



Title: Re: How to add Blips
Post by: DaBOSS54320 on October 26, 2014, 09:07:37 AM
There are 6 parameters.
First 3 are for the X,Y,Z coordinates.
The last one is for the icon.

But that leaves the 4th and 5th... what are they?
Title: Re: How to add Blips
Post by: SWEGTA on October 26, 2014, 10:52:34 AM
There are 6 parameters.
First 3 are for the X,Y,Z coordinates.
The last one is for the icon.

But that leaves the 4th and 5th... what are they?

The question at hand.
Mad?