EH10 Posted February 7, 2014 Share Posted February 7, 2014 بسم الله الرحمن الرحيم السلام عليكم ورحمة الله وبركاتة ابي طلبين فنكشات يجي بالشاشة منور السيرفر وتختفي بعد كم ثانية واذا كتبت ثاني مره يجي كاتب السيرفر ويختفي بعد كم ثانية واذا كتبت ثالث مره بيجي كاتب السيرفر Kaw اذا كتبت بيجي غير السيرفر واذا كررت ثاني مره بيجي لايمكنك التغيير بالسيرفر واذا كتبت ثالث مره ويجي بالشاشة بد لايمكنك التغيير في السيرفر Saw واذا كتبت بيجي من الاول Kaw وبعدها Saw ولما كتبت الطلب الثاني اذا ضغطت الزر بيجي بالشات انت الان اخذت سياره ويعطيك سياره واذا ضغطت ثاني مره يجي بالشات انت لديك سياره لايمكن اخذ شي ثاني Link to comment
#DRAGON!FIRE Posted February 7, 2014 Share Posted February 7, 2014 addCommandHandler guiCreateLabel setTimer guiSetVisible setElementData getElementData الطلب الثاني .. : Event: "onClientGUIClick" outputChatBox createVehicle warpPedIntoVehicle isElement cancelEvent Link to comment
فاّرس Posted February 7, 2014 Share Posted February 7, 2014 بالنسبه للطلب الثاني سوي داتا افضل Link to comment
EH10 Posted February 8, 2014 Author Share Posted February 8, 2014 الطلب الثاني .. : Event: "onClientGUIClick" outputChatBox createVehicle warpPedIntoVehicle isElement cancelEvent ممكن تعديل addEventHandler( "onClientGUIClick", Button, function () if isElement ( vehicle ) then outputChatBox( "مبروك انت معك سياره", source, 255, 255, 0, true ) vehicle = createVehicle ( id, x, y, z ) else cancelEvent ( ) outputChatBox( "انت معك سياره", source, 255, 0, 255, true ) end end ) Link to comment
Simba Posted February 8, 2014 Share Posted February 8, 2014 الطلب الثاني .. : Event: "onClientGUIClick" outputChatBox createVehicle warpPedIntoVehicle isElement cancelEvent ممكن تعديل addEventHandler( "onClientGUIClick", Button, function () if isElement ( vehicle ) then outputChatBox( "مبروك انت معك سياره", source, 255, 255, 0, true ) vehicle = createVehicle ( id, x, y, z ) else cancelEvent ( ) outputChatBox( "انت معك سياره", source, 255, 0, 255, true ) end end ) خطا تسوي كذا if source == اسم الزر Link to comment
فاّرس Posted February 8, 2014 Share Posted February 8, 2014 اول شيء ان السياره لازم تحطها سيرفر ولا ما بتشوفها الا انت, ثاني شيء سوي داتا مثل ما قلت لك, onClientGUIClick triggerServerEvent table - isElement - destroyElement createVehicle getElementData setElementData Link to comment
EH10 Posted February 8, 2014 Author Share Posted February 8, 2014 الـكـود صـح أو خـطأ # Client Side addEventHandler("onClientGUIClick", root,function() if source == Button then triggerServerEvent("vcars", getLocalPlayer()) end end ) # Server Side local vehicle = {} addEvent("vcars", true ) addEventHandler("vcars", root, function(player) if ( isElement ( vehicle[source] ) ) then destroyElement ( vehicle[source] ) end vehicle[source] = createVehicle(id, x, y, z) warpPedIntoVehicle( source, vehicle[source] ) outputChatBox("مبروك اخذت سياره", source, 255, 255, 0, true ) setElementData(player, "Sourth", true) else if getElementData(player, "Sourth") then outputChatBox("لديك سياره", source, 255, 255, 0, true ) end end ) Link to comment
TAPL Posted February 8, 2014 Share Posted February 8, 2014 local vehicle = {} addEvent("vcars", true ) addEventHandler("vcars", root, function() if not isElement(vehicle[source]) then local x, y, z = getElementPosition(source) vehicle[source] = createVehicle(id, x, y, z) -- id استبدل فقط warpPedIntoVehicle(source, vehicle[source]) outputChatBox("مبروك اخذت سياره", source, 255, 255, 0, true) else outputChatBox("لديك سياره", source, 255, 255, 0, true) 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