Jump to content

Custom blip. Little Help.


Eduardo95

Recommended Posts

Posted

Can somebody help me with this script?

mar = createMarker(1289.0939941406, -1647.5231933594, 12.546875, "Cylinder", 1.8, 0, 0, 57, 150); 
addEventHandler ( "onClientResourceStart", getResourceRootElement(getThisResource()), 
    function() 
        exports.customblips:createCustomBlip ( 0,0, 10, 10, "icon.png" ) 
    end 

I need to know how to attach the blip with one marker, i'm stuck here, please help.

Posted

I don't think you can attach it, but you can create it on the same position.

mar = createMarker(1289.0939941406, -1647.5231933594, 12.546875, "cylinder", 1.8, 0, 0, 57, 150); 
addEventHandler ( "onClientResourceStart", getResourceRootElement(getThisResource()), 
    function() 
        exports.customblips:createCustomBlip ( 1289.0939941406, -1647.5231933594, 10, 10, "icon.png" ) 
    end 
) 

Posted
local x, y, z = 1289.0939941406, -1647.5231933594, 12.546875 
mar = createMarker(x, y, z, "Cylinder", 1.8, 0, 0, 57, 150) 
exports.customblips:createCustomBlip ( x, y, 10, 10, "icon.png" ) 
  

Posted

ahh thank! but i have "the briefcase script" i need to know if is possible to change that blip for someone more customize for example a briefcase image. attached to player like that script

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