AddBlip
Available
Client
Syntax
AddBlip(name, settings)
Parameters
| Variable | Type |
|---|---|
| name | String |
| settings | Array |
Settings Parameters
| Variable | Type | Default value |
|---|---|---|
| x | Float | 0 |
| y | Float | 0 |
| z | Float | 0 |
| text | String | Blip |
| imageId | Number | 1 |
| colorId | Number | 0 |
| shortRange | Bool | true |
| scale | Float | 1.0 |
| rotation | Number | 0 |
| enable | Bool | true |
List of available image and color id : https://wiki.gtanet.work/index.php?title=Blips
Exemples
exports.ft_libs:AddBlip("ft_libs_blip_exemple", {
x = 124.57,
y = 254.54,
z = 1541.874,
text = "Exemple",
})
exports.ft_libs:AddBlip({
["ft_libs_blip_exemple_1"] = {
x = 124.57,
y = 254.54,
z = 1541.874,
text = "Exemple 1",
},
["ft_libs_blip_exemple_2"] = {
x = 124.57,
y = 254.54,
z = 1541.874,
text = "Exemple 2",
},
})
In game result

Updated less than a minute ago
