Eduardo95 Posted March 13, 2013 Share 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. Link to comment
Castillo Posted March 13, 2013 Share 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 ) Link to comment
WASSIm. Posted March 13, 2013 Share 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" ) Link to comment
Castillo Posted March 13, 2013 Share Posted March 13, 2013 That won't make any difference. Link to comment
Eduardo95 Posted March 13, 2013 Author Share 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 Link to comment
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