Jump to content

coNolel

Members
  • Posts

    718
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by coNolel

  1. السلام عليكم ورحمة الله تعالى وبركاته , اما بعد ، يا عيال وش السالفة حقت ام تي آي ، مغيرة كل أشكال السيارات حقت قراند إلى السيارات الأصلية ، وبعض الفنكشنات مب شغالة ولا المشكل من عندي ؟
  2. function dxDrawBorderedImage( x, y, width, height, image, imageWidth, imageHeight, color1, _width, postGUI ) local _width = _width or 1 -- dxDrawRectangle ( x+1, y+1, width-1, height-1, color1, postGUI ) dxDrawImage ( (x+width)/2-imageWidth,(y+height)/2-(imageHeight), image) dxDrawLine ( x, y, x+width, y, color1, _width, postGUI ) -- Top dxDrawLine ( x, y, x, y+height, color1, _width, postGUI ) -- Left dxDrawLine ( x, y+height, x+width, y+height, color1, _width, postGUI ) -- Bottom dxDrawLine ( x+width, y, x+width, y+height, color1, _width, postGUI ) -- Right end try this ^^"
  3. aaaah u can try this, ( btw not tested ^^" ) function dxDrawBorderedImage( x, y, width, height, color1, color2, _width, postGUI ) local _width = _width or 1 -- dxDrawRectangle ( x+1, y+1, width-1, height-1, color1, postGUI ) dxDrawImage ( (x+width)/2-imageWidth,(y+height)/2-(imageHeight), image) dxDrawLine ( x, y, x+width, y, color2, _width, postGUI ) -- Top dxDrawLine ( x, y, x, y+height, color2, _width, postGUI ) -- Left dxDrawLine ( x, y+height, x+width, y+height, color2, _width, postGUI ) -- Bottom dxDrawLine ( x+width, y, x+width, y+height, color2, _width, postGUI ) -- Right end i hope it works for you
  4. What do you mean , can you show me an image explaining what exactly do you want ?
  5. Hello @Fist as pack03 told you , you can use the function posted by me in the wiki , to help the others , but now you want it for an image so it's pretty easy as i think , u can just edit the function from dxDrawRectangle => to dxDrawImage and edit the x,y,w,h and the color ... Peace !
  6. قيم مود جميل ، من شخص أجمل .. ! بالتوفيق يا صديقي العزيز
  7. ودي أخش أبلشكم بهياطني ، بس الأخوان فوق عندهم حق ، يياحولون يساعدونك وانت تكرشهم وتبي الناس تسوي السكربتات على حسابها وتكتب اسمك على السكربت , رح عدل مودات قديمة وحط عليها اسمك أصرف
  8. سوي dxDrawRectangle في فنكشن و سو لها رندر addEventHandler("onClientRender",.... و سوي حدث onClientClick وسوي تحقق للماوس وتحقق لإحداثيات الـdxDrawRectangle بس لو تبي شي نظيف سوي فنكشي بسيط تغير فيه اسم الفنكشن ويبقى بنفس المفعول مثآل : function dxDrawButton(x,w,y,h,color,PostGUI) dxDrawRectangle(x,w,y,h,color,PostGUI) end
  9. اوك اسف هههههههه
  10. مو كأنك ناسي source في function() ? ولا انا محشش ؟
  11. onMarkerHit setElementInterior -- مب متأكد
  12. الله يهديك وش دخل مواصفات الجهاز ، جرب تتصل ب VPN يقبل إتصال خارجي مثل مثلا HOTSPOT SHIELD ما انصحك في CyberGHOST لاني كنت استعمله ما اقدر اخش ام تي آي والله ولي التوفيق ^^
  13. خفف علينا يا استاذتكفى لا تكرشني... امزح امزح. شرح كفو اشتفدت الكثير شكرا على العموم
  14. يعني الاعدادات اللي تكون داخل الفنكشن dxDrawRectangle(parameters) اذا فيه خطا المرجو التنبيه لعدم نشر الخطأ
  15. Hello Decro , true to use the argument PostGUI postGUI: A bool representing whether the image should be drawn on top of or behind any ingame GUI (rendered by CEGUI). not sure , btw , nice design ^^
  16. function اسم الفنكشن الي فيه الزر DX() dxDrawRectangle(x,y,w,h,tocolor(r,g,b)) end addEventHandler("onClientRender",root, اسم الفنكشن اللي فيه الزر DX) addEventHandler("onClientClick",root, function button(button,state) if ( button == "left" and state == "up" ) -- ليش up ? لأنها فعليا ، ظغطة الماوس تكون نزلة وطلعة ض if (isMouseOnPositon(x,y,w,h)) then removeEventHandler("onClientRender",root, اسم الفنكشن اللي فيه اللوحة) end end end) -- مو متأكد - كل الشكر للأخ @Default<3
  17. onPlayerLogin -- حدث / Event aclGetGroup setPlayerTeam
  18. طول عمرك محشش ههههههههههههههههههههههه يقولك سيرفر مب لعبة + تعال سكايب
  19. ادري جبت العيد ، بالله كيف أكتب كود لوا ف إطار ؟
  20. dxDrawBorderedRectangle طريقة الإستعمال ؟ : bool DxDrawBorderedRectangle ( float x, float y, float width, float height, int colorRectangle, int colorLine, [ int thickness = 1, bool postGUI = false ] ) colorRectangle : لون المستطيل colorLine : لون الخطوط اللي بتكون محطية في المستطيل thickness : سمك الخطوط ، يمديك تستعملها ك Hover مثلآ function DxDrawBorderedRectangle( x, y, width, height, color1, color2, _width, postGUI ) local _width = _width or 1 dxDrawRectangle ( x+1, y+1, width-1, height-1, color1, postGUI ) dxDrawLine ( x, y, x+width, y, color2, _width, postGUI ) -- Top dxDrawLine ( x, y, x, y+height, color2, _width, postGUI ) -- Left dxDrawLine ( x, y+height, x+width, y+height, color2, _width, postGUI ) -- Bottom dxDrawLine ( x+width, y, x+width, y+height, color2, _width, postGUI ) -- Right end ليش مسويها ؟ عشان تختصر عليك الوقت في الموازنة وتسهل عليك الحوسة هههه <lua>https://wiki.multitheftauto.com/wiki/DxDrawBorderedRectangle</lua>
  21. triggerServerEvent("Account",localPlayer) -- جرب addEvent("Account",true) addEventHandler("Account",root, function(AccountName) guiSetText(GUIEditor_Label[16],tostring(AccountName)) end ) -- sv addEvent("Account",true) function Account() local Account = getPlayerAccount ( source ) local AccountName = GetAccountName ( Account ) triggerClientEvent(source,"Account", source,AccountName) end addEventHandler("ip",root,Account)
×
×
  • Create New...