Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/04/19 in all areas

  1. السلام عليكم مبدأيا الي عندو افكار للمشروع يقولها ? -------------------------- في الفترة الاخيرة عرفت ان ممكن استخدم html, css, javascript داخل mta sa ----------------------------- جاتلي فكرة اني اصنع اطار عمل لتسهيل استخدام لغات تصميم الويب علي مطورين اللعبة html from تبع input هو ان مثلا لو يبي تنسيق لل يقدر يستخدم كلاس انا عمله يحطه في الانبوت ويسوي احلي تنسيق وبكل سهولة ولو يبي تصميم لرسالة هو مجرد تاج بسيط في كود الاتش تي ام ال واسم كلاس ويسوي له تنسيق الرسالة بكل سهولة والموضوع مش بيقف عند التنسيقات فقط بل استخدام ديناميكية الجافا سكربت وقوتها في اطار العمل و...الخ في اكيد منكم يعرفني ويعرف شغلي وللتأكد https://ahmedessam.info/ ----------------------------- تعامل مسبقا مع لغات الويب في اللعبة lua المهم انا احتاج مطور ويعرف الغير مناسب او بمعني اصح الغير مدعوم من خصائص لغات تصميم الويب او ممكن نجرب مع بعض website docs + github طبعا المشروع راح يترفع علي ونستفيد انا وهو ان في شئ مميز في اعمالنا
    2 points
  2. A poor demonstration of custom face morphing
    1 point
  3. There is a huge difference, MTA can create 10000+ of objects and the streamer can only load a part of it. Very hardware limited. The first example I gave you does not fix your issue directly, but it does answer your topic question. (except for the texture layer on the objects)
    1 point
  4. @Overkillz Objects will only be loaded when they are streamed in. This also means that they can be unloaded and reloaded. for i=550,20000 do removeWorldModel(i,10000,0,0,0) end setOcclusionsEnabled(false) setWaterLevel(-5000) local container = createElement("container") local count = 0 local function elementCounter () count = count + 1 iprint("Streamed in: ", source, ", ", count, "/", #garageObjects) end addEventHandler("onClientElementStreamIn", container, elementCounter) for k,objects in ipairs(garageObjects) do -- garageObjects table is already defined and with values local a,b,c,d,e,f,g,h,i = unpack(objects) local object = createObject ( a,b,c,d,e,f,g ) setObjectScale(object,h or 1) setElementDoubleSided(object, i or false ) setElementDimension(object,arenaCDimension) setElementParent(object, container) -- !important end fadeCamera(true) Keep in mind that this doesn't mean that the texture has been loaded. It doesn't have to be painted to exist. I recommend to use lowLOD objects instead, those will show up faster. https://wiki.multitheftauto.com/wiki/SetLowLODElement See this useful function: https://wiki.multitheftauto.com/wiki/AssignLod function assignLOD(element) local lod = createObject(getElementModel(element),0, 0 ,0, 0, 0, 0, true) setElementDimension(lod,getElementDimension(element)) setElementPosition(lod, getElementPosition(element)) setElementRotation(lod, getElementRotation(element)) setElementCollisionsEnabled(lod,false) setLowLODElement(element,lod) return lod end
    1 point
  5. False positive detections can occur. If you're not getting kicked now, then you should be OK
    1 point
  6. 1 point
  7. Maybe: https://wiki.multitheftauto.com/wiki/GuiSetProperty http://static.cegui.org.uk/static/WindowsLookProperties.html
    1 point
  8. Is there anyway to hide scrollbar which creates automatically?
    1 point
  9. لقد خاب ظني في المطورين العرب هروح هشوف في القسم الاجنبي ?
    1 point
  10. guiGridListAddRow(scoreBoardGridList, getTeamName(team), getPlayerName(v)) It is not very flexible, but you should consider each row an item with mutiple properties. If the two columns aren't related, then you need two gridlists. @majqq
    1 point
  11. It's official, MTASA has been bought and we are becoming SAMP. Future MTASA builds will be closed source and half the features removed. Have a nice day!
    1 point
  12. يب ما سويت فيد اوت انا +_+ انت فهمت الكونسبت المفروض تسوي الفيد اوت بنفسك hint: use setTimer and killTimer and isTimer
    1 point
  13. Yes, i update the acl together with the Update. I just need your Account name.
    1 point
  14. SAMP team didn't agree/like our move to announce it earlier than planned, because as I said, we felt the need to hurry as a result of the information leak and speculations going wild. So I think they'll stick to their planned announcement schedule for that reason.
    1 point
  15. Entire frame work can be unloaded / loaded for a single or multiple people. You'll be able to do 'Background' map editing; people will still see the stuff updating but they will be able to drive around / do anything else normally.
    1 point
  16. وانا وش قلت ؟+_+ الفنكشن ناقص تعريفات التيبلات ما قلت انت غلطان صباح الفل +_+ +لصاحب الموضوع تاكد من تفعيل ال oop من الميتا
    0 points
×
×
  • Create New...