MoHaMeD_Dz Posted May 27, 2018 Share Posted May 27, 2018 (edited) السلام عليكم ورحمة الله وبركاته Client Functions شباب انا ابي اتعلم اسوي مودات ف خشيت للويكي ورحت لـ دورت لقيت الكود دا isVehicleTaxiLightOn نزلت لقيت شرح الوظيفة الي هي This example binds the 'o' key to a function that toggles the taxi's light on and off, if you're in a taxi. في سيارة تاكسي o تخليك تشغل اضواء التاكسي من حرف ف رحت اشوف الكود لقيته خاص ب كلنت function toggleTaxiLight() local thePlayer = getLocalPlayer() if isPedInVehicle(thePlayer) then local theVehicle = getPedOccupiedVehicle(thePlayer) if thePlayer == getVehicleOccupant(theVehicle, 0) then -- if is a driver local id = getElementModel(theVehicle) -- getting vehicle model if ((id == 420) or (id == 438)) then -- if is a taxi local lights = isVehicleTaxiLightOn(theVehicle) -- getting vehicle lights state setVehicleTaxiLightOn(theVehicle, not lights) -- switch lights end end end end bindKey("o", "down", toggleTaxiLight) -- binding the function م يجي وش الخطأ o نسخته سويت له ملف كلت وحطيته و سويت ميتا ظهر فالسيرفر بس لم اشغله واركب تاكسي واظغط Edited May 27, 2018 by MoHaMeD_Dz Link to comment
MrKAREEM Posted May 27, 2018 Share Posted May 27, 2018 12 hours ago, MoHaMeD_Dz said: السلام عليكم ورحمة الله وبركاته Client Functions شباب انا ابي اتعلم اسوي مودات ف خشيت للويكي ورحت لـ دورت لقيت الكود دا isVehicleTaxiLightOn نزلت لقيت شرح الوظيفة الي هي This example binds the 'o' key to a function that toggles the taxi's light on and off, if you're in a taxi. في سيارة تاكسي o تخليك تشغل اضواء التاكسي من حرف ف رحت اشوف الكود لقيته خاص ب كلنت function toggleTaxiLight() local thePlayer = getLocalPlayer() if isPedInVehicle(thePlayer) then local theVehicle = getPedOccupiedVehicle(thePlayer) if thePlayer == getVehicleOccupant(theVehicle, 0) then -- if is a driver local id = getElementModel(theVehicle) -- getting vehicle model if ((id == 420) or (id == 438)) then -- if is a taxi local lights = isVehicleTaxiLightOn(theVehicle) -- getting vehicle lights state setVehicleTaxiLightOn(theVehicle, not lights) -- switch lights end end end end bindKey("o", "down", toggleTaxiLight) -- binding the function م يجي وش الخطأ o نسخته سويت له ملف كلت وحطيته و سويت ميتا ظهر فالسيرفر بس لم اشغله واركب تاكسي واظغط جربت تتأكد ان التاكسي الي انت راكب فيه الايد حقه 420 أو 438 أولا لو متأكد ان الايد صح فجرب تشوف الديبق وش يقول وقولنا هنا Link to comment
MoHaMeD_Dz Posted May 27, 2018 Author Share Posted May 27, 2018 45 minutes ago, MrKAREEM said: جربت تتأكد ان التاكسي الي انت راكب فيه الايد حقه 420 أو 438 أولا لو متأكد ان الايد صح فجرب تشوف الديبق وش يقول وقولنا هنا م يجي اي شيء Link to comment
zezoALGnop Posted May 27, 2018 Share Posted May 27, 2018 (edited) 2 hours ago, MrKAREEM said: جربت تتأكد ان التاكسي الي انت راكب فيه الايد حقه 420 أو 438 أولا لو متأكد ان الايد صح فجرب تشوف الديبق وش يقول وقولنا هنا if ((id == 420) or (id == 438)) then -- if is a taxi شف التحقق انه راكب تكسي الايدي حقه 420 و 438 Just now, zezoALGnop said: Edited May 27, 2018 by zezoALGnop 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