SWAT-M7MD Posted June 5, 2019 Share Posted June 5, 2019 local x,y,z = 406.241,104.305,3.76 marker8 = createMarker(31.08945,355.62836,0.26875,'cylinder',1.3,254, 126, 0, 255) addEventHandler("onClientMarkerHit",marker8, function( ) if isPedInVehicle(hitElement) then local vehicle = getPedOccupiedVehicle(hitElement) if vehicle then setElementPosition(vehicle, x,y,z) setElementFrozen(vehicle, true) setTimer(function( ) setElementFrozen(vehicle, false) end,6000,1,hitElement) end end end end ابي لو شخص دخل للماركر و هو بسيارة السيارة تنتقل للاحداثيات اللي انا مسويها Link to comment
salh Posted June 5, 2019 Share Posted June 5, 2019 (edited) --Client salhMark = createMarker ( -666.91980, 951.71588, 12.13281, "cylinder" ) function salh(hitElement) if isPlayerInVehicle ( hitElement ) then local vehicle = getPedOccupiedVehicle(hitElement) setElementPosition(vehicle, -656.82086, 949.41492, 12.13281) end end addEventHandler("onClientMarkerHit",salhMark,salh) Edited June 5, 2019 by salh 1 Link to comment
Guest Posted June 5, 2019 Share Posted June 5, 2019 11 minutes ago, salh said: --Client salhMark = createMarker ( -666.91980, 951.71588, 12.13281, "cylinder" ) function salh(hitElement) if isPlayerInVehicle ( hitElement ) then local vehicle = getPedOccupiedVehicle(hitElement) setElementPosition(vehicle, -656.82086, 949.41492, 12.13281) end end addEventHandler("onClientMarkerHit",salhMark,salh) salhMark = createMarker (-666.91980, 951.71588, 12.13281 - 1,'cylinder',1.3,254, 126, 0, 255) addEventHandler("onClientMarkerHit",salhMark, function ( hitMarker ) if isPedInVehicle ( hitMarker ) then local vehicle = getPedOccupiedVehicle(hitMarker) if ( vehicle ) then setElementPosition(vehicle, -656.82086, 949.41492, 12.13281) end end end في إحداثيات الماركر ليش سويت -1 انا ؟ هاذي سويتها عشان الماركر يجي في الأرض مب طاير في الهواء أخطاءك كانت: isPlayerInVehicle ,, Quote This function is deprecated. This means that its use is discouraged and that it might not exist in future versions. Please use isPedInVehicle instead. الويكي يقول هذا الفنكشن بينشال في الإصدارات القادمة يفضل إستخدام isPedInVehicle . أدري ترجمتي ام بي سي 2 . ثاني خطأ: ( -666.91980, 951.71588, 12.13281, "cylinder" ) هنا أنت مب معرف لون الماركر , حجمه , شفافيته . Link to comment
salh Posted June 5, 2019 Share Posted June 5, 2019 2 minutes ago, DABL said: هنا أنت مب معرف لون الماركر , حجمه , شفافيته هاذي اشياء مو اساسية + شكرا على الشرح ي ام بي سي (: Link to comment
Guest Posted June 5, 2019 Share Posted June 5, 2019 Just now, salh said: هاذي اشياء مو اساسية + شكرا على الشرح ي ام بي سي (: العفو , عيد سعيد . Link to comment
salh Posted June 5, 2019 Share Posted June 5, 2019 1 minute ago, DABL said: العفو , عيد سعيد . علينا و عليك 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