SkiZo Posted August 4, 2017 Share Posted August 4, 2017 Hello, I'm trying to Create Blip Table .. Can Someone Help me ? ! #Server Side Hospital = { {1177.26, -1324.92, 14.06}, {2029.25, -1419.17, 16.99}, {1607.06, 1825.09, 10.82}, {-320.21, 1055.96, 20, -302.87}, {-2644.37, 633.05, 14.45}, {-2201.14, -2292.66, 30.63}, {-1514.47, 2527.25, 55.74} } HospitalBlips = createBlipAttachedTo ( [ #Hospital ], 22 ) setBlipVisibleDistance (HospitalBlips,200) Help Link to comment
NeXuS™ Posted August 4, 2017 Share Posted August 4, 2017 Hospital = { {1177.26, -1324.92, 14.06}, {2029.25, -1419.17, 16.99}, {1607.06, 1825.09, 10.82}, {-320.21, 1055.96, 20, -302.87}, {-2644.37, 633.05, 14.45}, {-2201.14, -2292.66, 30.63}, {-1514.47, 2527.25, 55.74} } for i, k in pairs(Hospital) do HospitalBlips = createBlip(k[1], k[2], k[3], 22) setBlipVisibleDistance(HospitalBlips,200) end Try this. 1 Link to comment
SkiZo Posted August 4, 2017 Author Share Posted August 4, 2017 1 minute ago, NeXuS™ said: Hospital = { {1177.26, -1324.92, 14.06}, {2029.25, -1419.17, 16.99}, {1607.06, 1825.09, 10.82}, {-320.21, 1055.96, 20, -302.87}, {-2644.37, 633.05, 14.45}, {-2201.14, -2292.66, 30.63}, {-1514.47, 2527.25, 55.74} } for i, k in pairs(Hospital) do HospitalBlips = createBlip(k[1], k[2], k[3], 22) setBlipVisibleDistance(HospitalBlips,200) end Try this. Thanks Works <3 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