Jump to content

AboShanab

Members
  • Posts

    1,348
  • Joined

  • Last visited

Everything posted by AboShanab

  1. مبروك بيستيج وعقبال 100000000 ض1
  2. كل عام وانت بخير وصحة وسلامة : )
  3. مشكور على الطرح لبى قلبك , شرح خوقاقي , بالتوفيق ..
  4. ي لبيه .. شرح ابداع لبى قلبك .. واصل بدون فواصل .. تحياتي لك ..
  5. ي لبيه ي زاحف .. شرح كافي ووافي لبى قلبك .. يعطيك الف الف عافية .. تحياتي لك ..
  6. http://www.mediafire.com/?dbw2f30sp42xbjt امسك هذا هو المود ما عليك الا انك تركبه وتستمتع ..
  7. fileCreate -- صنع ملف fileWrite -- الكتابة في الملف fileClose -- اغلاق الملف , حفظهـ guiStaticImageLoadImage -- يغير الصورة اللي انت حاطها داخل النافذة takePlayerScreenShot -- ياخذ صورة من شاشة الاعب ارجو ان تكون فهمت
  8. اخوي الكود ماهو كامل .. ناقص : X , Y = guiGetScreenSize() وناقص فكشنات : onClickBtnLogin + LoginSH + SErem ..
  9. http://www.mediafire.com/?k7cxdu7ar09fmqm سويت لك مود كامل ي رب راح تفهمهـ .. تراهـ سهل الكود .. والمود بسيط جدا .. ان تم الافادة ضع اسم الموضوع takePlayerScreenShot | تم الافادة تحياتي لك ^^
  10. حبيبي ابو حمود .. خله اذا سوى صورة في ملف سيرفر يرسل البيانات الى ملف كلنت ..
  11. امسك هذا المود وافهمهـ .. https://community.multitheftauto.com/in ... ls&id=6470 افضل لك .. او يمديك تستحدم fileCreate -- Client Side and Server Side ! fileWrite -- Client Side and Server Side ! fileClose -- Client Side and Server Side ! guiStaticImageLoadImage -- Client Side only ! takePlayerScreenShot -- Server Side only ! واذا ما تعرف لهم استخدم المود افضل لك .. وكمان عندك مثال العم الويكي https://wiki.multitheftauto.com/wiki/OnPlayerScreenShot
  12. كففو والله ي سورآ .. وقسسم بالله المود ابدااااااااااااااااع يعطيك الف الف عافية .. ^^ تقبل مروري لبى قلبك
  13. وقسسم بالله ابدااااااااااع .. يعطيك الف الف مليون عافية ع هيك مود .. في انتظار جديدك ..
  14. عليكم السلام , يعطيك الف الف عافية ع الطرح .. تقبل مروري
  15. العفو .. حياك الله .. ان تم الافادة حط اسم الموضوع : ازالة التحديد | تم الافادة ..
  16. guiGridListSetSelectedItem ( YourGridList, 0, 0) حتى كذا يمديه يسوي .. كلها واحد .. استبدل YourGridList باسم القريد ليست حقك ..
  17. شف الطريقة الاسهل والانسبب واخذها ..
  18. -- # Client Side ! x,y = guiGetScreenSize() lable_1 = guiCreateLabel(15,y - 250,300,300,"",false) lable_2 = guiCreateLabel(15,y - 235,300,300,"",false) lable_3 = guiCreateLabel(15,y - 220,300,300,"",false) lable_4 = guiCreateLabel(15,y - 205,300,300,"",false) lable_5 = guiCreateLabel(15,y - 190,300,300,"",false) function outputTop(msg) local text4 = guiGetText(lable_4) guiSetText(lable_5,text4) local text3 = guiGetText(lable_3) guiSetText(lable_4,text3) local text2 = guiGetText(lable_2) guiSetText(lable_3,text2) local text1 = guiGetText(lable_1) guiSetText(lable_2,text1) guiSetText(lable_1,msg) setTimer(function() if (guiGetVisible(lable_1)) then hide1() end end,9999,1) setTimer(function() if (guiGetVisible(lable_2)) then hide2() end end,15000,1) setTimer(function() if (guiGetVisible(lable_3)) then hide3() end end,20000,1) setTimer(function() if (guiGetVisible(lable_4)) then hide4() end end,25000,1) setTimer(function() if (guiGetVisible(lable_5)) then hide5() end end,30000,1) end addEvent("onCallFun",true) addEventHandler("onCallFun",root, function (msg) outputTop(msg) end ) function hide1() guiSetAlpha(lable_1,0.90) setTimer(function() guiSetAlpha(lable_1,0.80) end,100,1) setTimer(function() guiSetAlpha(lable_1,0.70) end,200,1) setTimer(function() guiSetAlpha(lable_1,0.60) end,300,1) setTimer(function() guiSetAlpha(lable_1,0.50) end,400,1) setTimer(function() guiSetAlpha(lable_1,0.40) end,500,1) setTimer(function() guiSetAlpha(lable_1,0.30) end,600,1) setTimer(function() guiSetAlpha(lable_1,0.20) end,700,1) setTimer(function() guiSetAlpha(lable_1,0.10) end,800,1) setTimer(function() guiSetAlpha(lable_1,0) end,900,1) setTimer(function() guiSetAlpha(lable_1,1) end,1000,1) setTimer(function() guiSetText(lable_1,"") end,1000,1) end function hide2() guiSetAlpha(lable_2,0.90) setTimer(function() guiSetAlpha(lable_2,0.80) end,100,1) setTimer(function() guiSetAlpha(lable_2,0.70) end,200,1) setTimer(function() guiSetAlpha(lable_2,0.60) end,300,1) setTimer(function() guiSetAlpha(lable_2,0.50) end,400,1) setTimer(function() guiSetAlpha(lable_2,0.40) end,500,1) setTimer(function() guiSetAlpha(lable_2,0.30) end,600,1) setTimer(function() guiSetAlpha(lable_2,0.20) end,700,1) setTimer(function() guiSetAlpha(lable_2,0.10) end,800,1) setTimer(function() guiSetAlpha(lable_2,0) end,900,1) setTimer(function() guiSetAlpha(lable_2,1) end,1000,1) setTimer(function() guiSetText(lable_2,"") end,1000,1) end function hide3() guiSetAlpha(lable_3,0.90) setTimer(function() guiSetAlpha(lable_3,0.80) end,100,1) setTimer(function() guiSetAlpha(lable_3,0.70) end,200,1) setTimer(function() guiSetAlpha(lable_3,0.60) end,300,1) setTimer(function() guiSetAlpha(lable_3,0.50) end,400,1) setTimer(function() guiSetAlpha(lable_3,0.40) end,500,1) setTimer(function() guiSetAlpha(lable_3,0.30) end,600,1) setTimer(function() guiSetAlpha(lable_3,0.20) end,700,1) setTimer(function() guiSetAlpha(lable_3,0.10) end,800,1) setTimer(function() guiSetAlpha(lable_3,0) end,900,1) setTimer(function() guiSetAlpha(lable_3,1) end,1000,1) setTimer(function() guiSetText(lable_3,"") end,1000,1) end function hide4() guiSetAlpha(lable_4,0.90) setTimer(function() guiSetAlpha(lable_4,0.80) end,100,1) setTimer(function() guiSetAlpha(lable_4,0.70) end,200,1) setTimer(function() guiSetAlpha(lable_4,0.60) end,300,1) setTimer(function() guiSetAlpha(lable_4,0.50) end,400,1) setTimer(function() guiSetAlpha(lable_4,0.40) end,500,1) setTimer(function() guiSetAlpha(lable_4,0.30) end,600,1) setTimer(function() guiSetAlpha(lable_4,0.20) end,700,1) setTimer(function() guiSetAlpha(lable_4,0.10) end,800,1) setTimer(function() guiSetAlpha(lable_4,0) end,900,1) setTimer(function() guiSetAlpha(lable_4,1) end,1000,1) setTimer(function() guiSetText(lable_4,"") end,1000,1) end function hide5() guiSetAlpha(lable_5,0.90) setTimer(function() guiSetAlpha(lable_5,0.80) end,100,1) setTimer(function() guiSetAlpha(lable_5,0.70) end,200,1) setTimer(function() guiSetAlpha(lable_5,0.60) end,300,1) setTimer(function() guiSetAlpha(lable_5,0.50) end,400,1) setTimer(function() guiSetAlpha(lable_5,0.40) end,500,1) setTimer(function() guiSetAlpha(lable_5,0.30) end,600,1) setTimer(function() guiSetAlpha(lable_5,0.20) end,700,1) setTimer(function() guiSetAlpha(lable_5,0.10) end,800,1) setTimer(function() guiSetAlpha(lable_5,0) end,900,1) setTimer(function() guiSetAlpha(lable_5,1) end,1000,1) setTimer(function() guiSetText(lable_5,"") end,1000,1) end -- # Server Side ! function outputTop(msg) triggerClientEvent("onCallFun",root,msg) end addEventHandler("onPlayerLogin",root, function (_,acc) if isObjectInACLGroup("user." .. getAccountName(acc),aclGetGroup("Admin")) then outputTop("" .. getPlayerName(source):gsub('#%x%x%x%x%x%x', '') .. " Has Logged In #") end end ) تعديل ع الاسم + سويته يختفي بخفيف ..
  19. -- Client Side ! x,y = guiGetScreenSize() lable_1 = guiCreateLabel(15,y - 250,300,300,"",false) lable_2 = guiCreateLabel(15,y - 235,300,300,"",false) lable_3 = guiCreateLabel(15,y - 220,300,300,"",false) lable_4 = guiCreateLabel(15,y - 205,300,300,"",false) lable_5 = guiCreateLabel(15,y - 190,300,300,"",false) function outputTop(msg) local text4 = guiGetText(lable_4) guiSetText(lable_5,text4) local text3 = guiGetText(lable_3) guiSetText(lable_4,text3) local text2 = guiGetText(lable_2) guiSetText(lable_3,text2) local text1 = guiGetText(lable_1) guiSetText(lable_2,text1) guiSetText(lable_1,msg) end addEvent("onCallFun",true) addEventHandler("onCallFun",root, function (msg) outputTop(msg) end ) -- Server Side ! function outputTop(msg) triggerClientEvent("onCallFun",root,msg) end addEventHandler("onPlayerLogin",root, function (_,acc) if isObjectInACLGroup("user." .. getAccountName(acc),aclGetGroup("Admin")) then outputTop("" .. getPlayerName(source) .. " Has Logged In #") end end ) الحقوق للاخ طلال الله يجزاهـ الف خير ..
×
×
  • Create New...