Jump to content

^iiEcoo'x_)

Members
  • Posts

    2,935
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by ^iiEcoo'x_)

  1. مع الأحرف و نقاطهن ( في , نقطة ; صورة ) يلا سوي اندومي , صوله لي فيديو . انت طلبت الصورة كاملة .
  2. addEventHandler 'onPlayerChat' getPlayerAccount isGuestAccount outputChatBox cancelEvent
  3. يسمنو إيديك , كيف احط الحسابات في اليستة ذي ؟ https://www.w3schools.com/howto/howto_js_filter_lists.asp طريقة استخرجاهن اعرف , بس كيف احطهن بيها م ادري
  4. HTML السلام عليكم , كيف أحظر حساب سويته عن طريقة و كيف أفك حظره ؟ اذا انحظر ما يقدر يخش بالحساب *
  5. هذا القسم متخصص في الشروحات البرمجية فقط !
  6. لا يحلو , انقل 3 بنفس الوقت ,ينتقل الاول والثانين ما ينتقلو , يظهر خطأ . هلا ي محترم .
  7. إذا قصدك , إنه بتطلع الرسالتين مع بعض بنفس الوقت ف التعديل يكون ع سطر 4 أظن .
  8. مسويلك خريطة بديلة , زي اف 11 , بيجيب لك الاعبين في الخريطة , مش صورة بس
  9. , بالأخير يجيه ( 2 ) زوار ; واحد يكون أدمن و واحد يكون إبن خاله .
  10. أخوي ; يمنع المشاركات المزدوجة .
  11. يوو نسيت احط الأقواس . function checkArmor ( ) value = false if getPedArmor ( localPlayer ) >= 15 then value = true triggerServerEvent ( 'getArmor' , localPlayer , getPedArmor ( localPlayer ) - 15 ) elseif getPedArmor ( localPlayer ) < 15 then triggerServerEvent ( 'getArmor' , localPlayer , 0 ) value = true elseif getPedArmor ( localPlayer ) == 0 then value = false end return value end function zombieattack ( attacker, weapon, bodypart ) if (attacker) then if getElementType ( attacker ) == "ped" then if (getElementData (attacker, "zombie") == true) then local playerHealth = getElementHealth ( getLocalPlayer() ) if ( checkArmor ( ) == true ) then return end if playerHealth > 15 then setElementHealth ( source, playerHealth - 15 ) else triggerServerEvent ("playereaten", source, source, attacker, weapon, bodypart ) end end end end end addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), zombieattack )
  12. العفو # function checkArmor ( ) value = false if getPedArmor ( localPlayer ) >= 15 then value = true triggerServerEvent ( 'getArmor' , localPlayer , getPedArmor ( localPlayer ) - 15 ) elseif getPedArmor ( localPlayer ) < 15 then triggerServerEvent ( 'getArmor' , localPlayer , 0 ) value = true elseif getPedArmor ( localPlayer ) == 0 then value = false end return value end function zombieattack ( attacker, weapon, bodypart ) if (attacker) then if getElementType ( attacker ) == "ped" then if (getElementData (attacker, "zombie") == true) then local playerHealth = getElementHealth ( getLocalPlayer() ) if ( checkArmor == true ) then return end if playerHealth > 15 then setElementHealth ( source, playerHealth - 15 ) else triggerServerEvent ("playereaten", source, source, attacker, weapon, bodypart ) end end end end end addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), zombieattack ) جرب كذا , منا قآدر أركبها بمخي
  13. موضوع فيه الكود الي طلبته : https://forum.multitheftauto.com/topic/90442-طلب-في-لوحة-الترقيات/?do=findComment&comment=820429
  14. الأرقيمنت الثالث بتختار المقعد الي بتحط اللاعب فيه , اما اذا كان قصدك تحطهم بنفس المقعد , فما ينفع , رح يعطيك أخطاء بالدي بق
  15. function zombieattack ( attacker, weapon, bodypart ) if (attacker) then if getElementType ( attacker ) == "ped" then if (getElementData (attacker, "zombie") == true) then local playerHealth = getElementHealth ( getLocalPlayer() ) if getPedArmor ( localPlayer ) > 15 then triggerServerEvent ( 'getArmor' , localPlayer , getPedArmor ( localPlayer ) - 15 ) else triggerServerEvent ( 'getArmor' , localPlayer , 0 ) return end if playerHealth > 15 then setElementHealth ( source, playerHealth - 15 ) else triggerServerEvent ("playereaten", source, source, attacker, weapon, bodypart ) end end end end end addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), zombieattack ) -- add this to server side. addEvent ( 'getArmor' , true ) addEventHandler ( 'getArmor' , root , function ( Value ) setPedArmor ( source , Value ) end )
  16. اظن من خلال الميتآ ,
×
×
  • Create New...