Jump to content

AHMED MOSTAFA

Members
  • Posts

    1,367
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by AHMED MOSTAFA

  1. انا اسوي كدة لكن بعد ما غيري يعطي مثال
  2. بصراحة ماني متأكد لكن يمديك تجرب function Command ( Player ) local playerTeam = getPlayerTeam ( Player ) local teamName = getTeamName ( playerTeam ) if teamName == "team" then x, y, z = getElementPosition ( Player ) if mMarker then destroyElement ( mMarker ) mMarker = createMarker ( x, y, z, "cylinder", 1.5, 0, 255, 0, 150 ) else mMarker = createMarker ( x, y, z, "cylinder", 1.5, 0, 255, 0, 150 ) end end end addCommandHandler ( "CreateM", Command ) function onHit ( Hiter ) if source == mMarker then setElementHealth ( Hiter, 200 ) takePlayerMoney ( Hiter, 200 ) givePlayerMoney ( Player, 200 ) end end addEventHandler ( "onMarkerHit", root, onHit )
  3. getPlayerTeam getTeamName createMarker setElementPosition "onMarkerHit" setElementHealth
  4. getPlayerTeam getTeamName "onClientPlayerWeaponFire" getElementHealth setElementHealth -- عن طريق اطلاق النار بسلاح معين
  5. انا آسف اذا زعلتك بشيء لكن بصراحة انت فورت دمي المهم ما تزعل والله ما احب احد يزعل مني اعرف ان كودك اصغر وافضل لكن انا كان مقصدي شي آخر على العموم ما تزعل تراها دنيا فانية
  6. طيب وايش رأيك تتعلم البرمجة وتسوي واحد ؟
  7. صورة قديمة هو 16 سنة وانا 17 انا مواليد 2000
  8. اما .. هذا قصف جبهة حصري وش فيك سوكينج ض1 تراه 16 سنة ذا صديقي على الفيس بس ترا غلطان انا اني اخليه يدعم المنتدى
  9. وعليكم السلام ورحمة الله وبركاته بالتوفيق لك وان شاء الله تكون ناجح في مواضيعك
  10. كودك صح ولا ما صح ما يهمني انا اعطيته فكرة مب على اساس متصلحة ولا غيره انا اعطيه حالة السيارة بالنسبة لصحتها على العموم انهي الموضوع وكمان انا احب اتفلسف وحياك الله @Master_MTA @!#NssoR_) شوف صاحب الموضوع اذا يبي شي من هذا الموضوع او اغلقه يا نسور
  11. ما يخالف المهم ما يكون فيه اخطاء
  12. بما انه تخبيص جربه وشوف بنفسك .. واتأكد اني ما جربت ولا كود من اللي ساعدت بهم الباقيين من زمااااااااااااااان لأنو بكل بساطة ما اشغل اللعبة وخصوصاً ان كل ال30 سطر هدول رد فقط على
  13. يخي انا اقصد اني ما اعرف اذا يبيه سيرفر او كلينت وبما انك تقول وش دخل الترايجر اذا تبيه سيرفر او كلينت اياً كان -- Client function myVehicleHealth () local isVehicle = getPedOccupiedVehicle ( localPlayer ) if isVehicle then local theVehicle = getElementHealth ( isVehicle ) outputChatBox ( "vehicle's health: "..theVehicle.."." ) if theVehicle == 1000 then outputChatBox ( "vehicle's health: very good." ) triggerServerEvent("send1", localPlayer ) elseif theVehicle < 1000 and theVehicle >= 800 then outputChatBox ( "vehicle's health: good." ) triggerServerEvent("send2", localPlayer ) elseif theVehicle < 800 and theVehicle >= 500 then outputChatBox ( "vehicle's health: معقولة ض1." ) triggerServerEvent("send3", localPlayer ) elseif theVehicle < 500 and theVehicle >= 0 then outputChatBox ( "vehicle's health: bad vehicle." ) triggerServerEvent("send4", localPlayer ) end else outputChatBox ( "You are not inside vehicle." ) end end addCommandHandler ( "myCarH", myVehicleHealth ) -- Server addEvent("send1", true) addEventHandler("send1", root, function( ) exports["guimessages"]:outputServer(client, "message", 255, 255, 0) -- eny code end ) addEvent("send2", true) addEventHandler("send2", root, function( ) exports["guimessages"]:outputServer(client, "message", 255, 255, 0) -- eny code end ) addEvent("send3", true) addEventHandler("send3", root, function( ) exports["guimessages"]:outputServer(client, "message", 255, 255, 0) -- eny code end ) addEvent("send4", true) addEventHandler("send4", root, function( ) exports["guimessages"]:outputServer(client, "message", 255, 255, 0) -- eny code end ) تراني احب اطول الاكواد هذا السبب للسؤال اللي رح تطرحه
  14. @MR.NaiF-MTA اذا قلت لك انه حلو صراحة كذة رح اجاملك البرمجة اكيد جيدة لكن التصميم مب حلو حق الجي يو آي وعندي سؤال مجنني اذا احد اشتراه اكيد يقدر ينشره بكل مكان كيف رح تبيعه لأحد وتضمن انه مارح ينشره واي بيعة تانية بتروح عليك ؟
  15. وش يعرفني انا انه يبيه سيرفر ؟ هو ما حدد واذا حدد ترا عادي اسويها بترايجر
  16. من جدك ؟ مب شايف العلامة هاذي مثلاً < لا اله الا الله
  17. تم التسجيل Killer Project ان شاء الله احاول ادعمكم بكل ما اقدر @MR.NaiF-MTA
  18. وش فيك 3 مواضيع مسويهم على العموم بالتوفيق في منتداك
  19. لا انا ناشره في 12/3/2017 لكن بتاريخ 24/7/2016 على العموم نورت الموضوع
  20. جرب ذا -- Client function myVehicleHealth () local isVehicle = getPedOccupiedVehicle ( localPlayer ) if isVehicle then local theVehicle = getElementHealth ( isVehicle ) outputChatBox ( "vehicle's health: "..theVehicle.."." ) if theVehicle == 1000 then outputChatBox ( "vehicle's health: very good." ) elseif theVehicle < 1000 and theVehicle >= 800 then outputChatBox ( "vehicle's health: good." ) elseif theVehicle < 800 and theVehicle >= 500 then outputChatBox ( "vehicle's health: معقولة ض1." ) elseif theVehicle < 500 and theVehicle >= 0 then outputChatBox ( "vehicle's health: bad vehicle." ) end else outputChatBox ( "You are not inside vehicle." ) end end addCommandHandler ( "myCarH", myVehicleHealth )
  21. وانت اشطر يا فارس منور المنتدى ياغالي
×
×
  • Create New...