Eduardo95 Posted March 13, 2013 Posted March 13, 2013 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.
Castillo Posted March 13, 2013 Posted March 13, 2013 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 )
WASSIm. Posted March 13, 2013 Posted March 13, 2013 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" )
Eduardo95 Posted March 13, 2013 Author Posted March 13, 2013 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
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