aBo.F[ra]G<3 Posted May 9, 2014 Share Posted May 9, 2014 السسلام عليكم ي شباب ابي كود سياره انا سويت لوحه وابي بمجرد ماضغط على الزر تظهر سياره بدون فلوس مع كود اذا انفجرة تختفي ------------- Link to comment
Mr-M3AND Posted May 9, 2014 Share Posted May 9, 2014 triggerServerEvent createVehicle getElementPosition warpPedIntoVehicle setElementData getElementData destroyElement onVehicleExplode Link to comment
aBo.F[ra]G<3 Posted May 9, 2014 Author Share Posted May 9, 2014 ضفني سكايبي salman83511 Link to comment
™!>VàLéNTiNô<!™ Posted May 9, 2014 Share Posted May 9, 2014 triggerServerEvent createVehicle getElementPosition warpPedIntoVehicle setElementData getElementData destroyElement onVehicleExploed Where Is ? onClientGUIClick getElementType Why ? setElementData getElementData Link to comment
™!>VàLéNTiNô<!™ Posted May 9, 2014 Share Posted May 9, 2014 (edited) Client Side -------------------------- -------- Your Panel -------------------------- addEventHandler("onClientGuiClick", getRootElement(), function () if ( source == Key ) then triggerServerEvent("Car", getLocalPlayer()) end end ) Key = Your Buttom Name Server Side addEvent("Car", true) addEventHandler("Car", root, function () car = createVehicle ( ID, x, y, z ) warpPedIntoVehicle ( source, car ) end ) Edited May 9, 2014 by Guest Link to comment
Mr-M3AND Posted May 9, 2014 Share Posted May 9, 2014 Where Is ? onClientGUIClick getElementType ترا اللي حطيته فنكشنات مو الكود كامل Why ? setElementData getElementData وهنا لازم تسوي داتا للسيارة عشان تتحقق اذا في سيارة تسحبها وتطلع سيارة غيرها Link to comment
™!>VàLéNTiNô<!™ Posted May 9, 2014 Share Posted May 9, 2014 انا دارى قصدك والله بس طلبو ماطلب هنا يسحب القديمة Where Is ? onClientGUIClick getElementType ترا اللي حطيته فنكشنات مو الكود كامل انت تشوفهم كود كامل ؟ الصراحة هذه المافجاة صضمتنى Link to comment
ΞĪŚŚÀ Posted May 9, 2014 Share Posted May 9, 2014 انت تشوفهم كود كامل ؟ الصراحة هذه المافجاة صضمتنى اقرآ صح يارجل !!! هو يفهمك . Link to comment
™!>VàLéNTiNô<!™ Posted May 9, 2014 Share Posted May 9, 2014 فى اشياء زيادة واشياء تانية ناقصة عادى من فينا لايخطأ بس لازم توضحهم هو يقولى ماعطيتو الكود كامل على فنكشن وحدث يكلم على اساس انهم كود Link to comment
Mr-M3AND Posted May 9, 2014 Share Posted May 9, 2014 انا دارى قصدك والله بس طلبو ماطلب هنا يسحب القديمة Where Is ? onClientGUIClick getElementType ترا اللي حطيته فنكشنات مو الكود كامل انت تشوفهم كود كامل ؟ الصراحة هذه المافجاة صضمتنى اول شي ياليت تقرا صح مو تسوي عم خبير وثاني شي يوم تسوي فاهم وين هذي بكودك فوق^ ؟ getElementType !!يعني الا تبي تسوي زحمة والشارع فاضي Link to comment
</Mr.Tn6eL> Posted May 10, 2014 Share Posted May 10, 2014 Client Side addEventHandler("onClientGUIClick", resourceRoot, function() if source == button then -- اسم الزر triggerServerEvent("onCreateVehicle", localPlayer) end end) Server Side local vehicle = {} local x, y, z = 0, 0, 0 --- الاحداثيات local id = 400 -- الايدي addEvent("onCreateVehicle", true) addEventHandler("onCreateVehicle", root, function() if isElement(vehicle[source]) then destroyElement (vehicle[source]) end vehicle[source] = createVehicle(id, x, y, z) warpPedIntoVehicle (source, vehicle[source]) end) Link to comment
The Killer Posted May 10, 2014 Share Posted May 10, 2014 ناقصك تحذف القيمه من الجدول vehicle[source] = nil local vehicle = {} local x, y, z = 0, 0, 0 --- الاحداثيات local id = 400 -- الايدي addEvent("onCreateVehicle", true) addEventHandler("onCreateVehicle", root, function() if isElement(vehicle[source]) then destroyElement (vehicle[source]) vehicle[source] = nil end vehicle[source] = createVehicle(id, x, y, z) warpPedIntoVehicle (source, vehicle[source]) end) addEventHandler ("onPlayerQuit", root, function () if isElement (vehicle[source]) then destroyElement (vehicle[source]) vehicle[source] = nil end end) Link to comment
jafar Posted May 10, 2014 Share Posted May 10, 2014 ناقصك تحذف القيمه من الجدول vehicle[source] = nil local vehicle = {} local x, y, z = 0, 0, 0 --- الاحداثيات local id = 400 -- الايدي addEvent("onCreateVehicle", true) addEventHandler("onCreateVehicle", root, function() if isElement(vehicle[source]) then destroyElement (vehicle[source]) vehicle[source] = nil end vehicle[source] = createVehicle(id, x, y, z) warpPedIntoVehicle (source, vehicle[source]) end) addEventHandler ("onPlayerQuit", root, function () if isElement (vehicle[source]) then destroyElement (vehicle[source]) vehicle[source] = nil 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