Jupi Posted May 23, 2015 Share Posted May 23, 2015 السلام عليكم ابي فنكشن يتحقق اذا كان ال Trailer متصل بالمركبة دورت ما لقيت لو احد يعرف شيء مثله يتفضل يقولي Link to comment
EH10 Posted May 23, 2015 Share Posted May 23, 2015 الـقسم خطأ # Function :# detachTrailerFromVehicle Link to comment
Jupi Posted May 23, 2015 Author Share Posted May 23, 2015 الـقسم خطأ # Function :# detachTrailerFromVehicle انا اقول يتحقق مو يفصلها Link to comment
yazan Posted May 24, 2015 Share Posted May 24, 2015 اعمل داتا مع الايفنت تركيب المقطوره و امسح داتا لمن تفكك و تحقق من داتا مدري لو فيه طريقه ثانيه onTrailerAttach onTrailerDetach setElementData edit# هذه مثال function detachTrailer(theTruck) setElementData ( localPlayer, "Spawncite", true ) end addEventHandler("onTrailerAttach", getRootElement(), detachTrailer) function detachTrailer(theTruck) setElementData ( localPlayer, "Spawncite", false ) end addEventHandler("onTrailerDetach", getRootElement(), detachTrailer) addEventHandler ("onClientGUIClick", resourceRoot, function () if (source == Button) then if ( getElementData( localPlayer, "Spawncite", true )) then playSound("1.mp3") else playSound("2.mp3") end end end) Link to comment
Jupi Posted May 25, 2015 Author Share Posted May 25, 2015 اعمل داتا مع الايفنت تركيب المقطوره و امسح داتا لمن تفكك و تحقق من داتا مدري لو فيه طريقه ثانيه onTrailerAttach onTrailerDetach setElementData edit# هذه مثال function detachTrailer(theTruck) setElementData ( localPlayer, "Spawncite", true ) end addEventHandler("onTrailerAttach", getRootElement(), detachTrailer) function detachTrailer(theTruck) setElementData ( localPlayer, "Spawncite", false ) end addEventHandler("onTrailerDetach", getRootElement(), detachTrailer) addEventHandler ("onClientGUIClick", resourceRoot, function () if (source == Button) then if ( getElementData( localPlayer, "Spawncite", true )) then playSound("1.mp3") else playSound("2.mp3") end end end) صراحة افدتني بلايفينت بس المثال ما فهمته تسلم يزن Link to comment
yazan Posted May 25, 2015 Share Posted May 25, 2015 العفو # هذه المثال يوم تلصق شاحنه يعطيك داتا و يوم تفكها يغير قيمه داتا الى فلس يوم تكبس زر يتحقق من قيمه داتا لو ترو يشغل صوت 1 لو فلس يشغل صوت 2 مجرد مثال Link to comment
</Mr.Tn6eL> Posted May 25, 2015 Share Posted May 25, 2015 اعمل داتا مع الايفنت تركيب المقطوره و امسح داتا لمن تفكك و تحقق من داتا مدري لو فيه طريقه ثانيه onTrailerAttach onTrailerDetach setElementData edit# هذه مثال function detachTrailer(theTruck) setElementData ( localPlayer, "Spawncite", true ) end addEventHandler("onTrailerAttach", getRootElement(), detachTrailer) function detachTrailer(theTruck) setElementData ( localPlayer, "Spawncite", false ) end addEventHandler("onTrailerDetach", getRootElement(), detachTrailer) addEventHandler ("onClientGUIClick", resourceRoot, function () if (source == Button) then if ( getElementData( localPlayer, "Spawncite", true )) then playSound("1.mp3") else playSound("2.mp3") end end end) صراحة افدتني بلايفينت بس المثال ما فهمته تسلم يزن localPlayer بالسيرفر ماينفع function onTrailer(vehicle) setElementData(vehicle, "isTrailerAttached", eventName == "onClientTrailerAttach") end addEventHandler("onClientTrailerAttach", root, onTrailer) addEventHandler("onClientTrailerDetach", root, onTrailer) function isTrailerAttached(vehicle) if isElement(vehicle) and getElementType(vehicle) == "vehicle" then return getElementData(vehicle, "isTrailerAttached") end return false end addEventHandler ("onClientGUIClick", resourceRoot, function( ) if source == Button then local vehicle = getPedOccupiedVehicle(localPlayer) if vehicle and getVehicleController(vehicle) == localPlayer then if isTrailerAttached(vehicle) then playSound("1.mp3") else playSound("2.mp3") end end end end) 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