Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 18/12/16 in all areas

  1. لغة لوا بالنسبهه عند العرب معدوم دعمها شروحات قليله جدا ومافي كورس محدد يشرح لك تفاصيل اللغه , وهي تعتبر لغه سهله جدا مقارنه باللغات الثانيه وكل لغات البرمجه قريبه من بعض لكن تختلف باشياء بسيطه بنهاية الوضيفه end كمثال الجافا سكربت ما تكتب كود الوضيفه يكون بين قوسين اذا منت فاهم شي من كلامي شي عادي كمل وبس <@> واهم شي حاول تفهم وتدرب على الكلمات اللي تواجهك بالبرمجه بالانقلش اما اذا كانت لغتك بالانقلش كويسه .اسحب على الكلام الي تحت وابدا ابحث بالانقلش مثل ما قالك كلنويا مدري كنلوليل ---------- اما اذا لغتك ماش حالها وجايب العيد كمل هنا اول شي تعلم الأساسيات وهي المتغيرات وانواع التايب واللي منها سترنق , نمبر , اوبجكت , بولين ,وفيه اشياء ثانيه وايش الفرق بينهم وتبدا بامثله بسيطه لين تبدا تعرف كيف اللغه تشتغل وكيف تتعامل معها بعدين تبدا تتعمق بالجداول وكيف تسوي لوب وو هالامور حاليا يمكن منت فاهم منها ولا اي شي لكن كويس انك تاخذ خلفيه سريعه ومع الشروحات الي بتشوفها تبدا تتذكر وتفهم الزبده وماطول عليك انصحك تتفرج كورس جافا سكربت , لان العرب كثير يدعموا هاللغه ومليان شروحات وامثله , طبعا خذ منها الاساسيات وارجع ابحث عن شروحات لـ لغة لوا وبتحصلها بسيطه وسهله جدا عليك , وطبعا جافا سكربت ما رح تفهمك لوا ميه بالميه .لكن هي تقريبا قريبه وبتخليك تقدر تفهم لوا بشكل افضل وتساعدك وتبدا انت تمسك خط وتطور من نفسك
    2 points
  2. Update: Limitless hosting does no longer exist. Refer to the post at https://forum.multitheftauto.com/topic/79146-limitless-free-hosting-free-mtasa-samp-servers/?do=findComment&amp;comment=936804 Mod note: Topic closed. Limitless FREE Hosting is a forum that provides free game servers Game servers Available: MTA:SA SAMP Garry's Mod Counter Strike 1.6 NEWS: To improve our services, we are taking donations. And what is MORE good? By donating, you will be getting rewards. Check out all the information and exciting rewards here: http://limitlessrpg.com/Thread-DONATIONS-Premium-Game-Servers-More?pid=18252#pid18252 FREE MTA:SA & SAMP Servers: 500 slots max, depending on sponsor. You need to make posts on http://limitlessrpg.com 2 GB Disk Space Forum Support USA Location Control Panel How to get FREE MTA SA or SAMP Server? Complete Details about getting a free server: http://limitlessrpg.com/Announcement-How-to-get-FREE-Server
    1 point
  3. بسم الله الرحمن الرحيم السلام عليكم ورحمة الله وبركاتة يسرنا اعلامكم بانة تم افتتاح منتدى ومجتمع ام تي اي العرب المنتدى يهدف الى دعم البرنامج ام تي اي واللعبه جراند سان اندرياس المنتدى رسمي ومرخص من الشركة يعني كل شيء رسمي 100 % المنتدى يدار من قبل اعضاء لخدمة الزوار والاعضاء المنتدى باذن الله سيستمر يوجد اكثر من اداري في المنتدى طلبات الاشراف متاحة حالياً بشروط معينة موجودة في قسم خدمة الاعضاء او سيتم اضافتها قريباً اذا لم تجدها نتمنى من الجميع التسجيل والانضمام الينا للدخول الى المنتدى : http://www.mtaarabs.com/ or http://www.mtaarabs.com/vb للتسجيل : http://mtaarabs.com/vb/register.php نرحب بالجميع ونتمنى من الجميع التفاعل شاكرين لكم حسن التعاون مع أطيب التحيات iPrestege شكراً لكم
    1 point
  4. Atacar la base y explotar bombas como terroristas . La seguridad debe defender la base .
    1 point
  5. This is because you are overwriting the variable "myCol" with the latter. Do not use the same names for the variables unless you want to overwrite it.
    1 point
  6. For every vehicle the cap is in a different position so you will have to create a table with offsets. The best way for the offsets to line up every time at any angle is using the element's Matrix. For this you'd need to enable OOP in your script. Here's a simple code that does this and make the offsets simple for you to edit -- This is the offsetTable where we add the vehicles and its fuel cap -- [vehicle Model] = Vector3(Right, Forward, Up) local oT = { [411] = Vector3(1.08,-2.1,0.09), --Infernus [400] = Vector3(-1,-2.1,-0.09), --Landstalker [485] = Vector3(-0.79,0.7,0), --Baggage } local color = tocolor( 255, 255, 255 ) -- Simple color variable. -- Run this function for every frame. addEventHandler( "onClientRender", root, function( ) --Create a table of all the vehicles in the server. local vehs = getElementsByType"vehicle" -- Loop through every vehicle in the server. for i=1,#vehs do -- Checks if the vehicle's model is in the offsetTable. if oT[vehs[i].model] then -- Create some simple variables. local veh,model,offset = vehs[i],vehs[i].model,oT[vehs[i].model] -- Convert the global position to screen position. local screenOffset = Vector2(getScreenFromWorldPosition( veh.matrix:transformPosition(offset), 0, false )) -- Draw a circle at that location. dxDrawText( "●", screenOffset, screenOffset, color, 2, "default", "center", "center" ) end end end ) https://streamable.com/x3mlx
    1 point
  7. ^ false او true نفترض ان الاعب كتب غير كلمة فلازم تتحقق القيمة تساوي بولين stat وعندك غلط في وضع الفريز راح يكون ال فلازم تحولها لـ بولين بالتوفيق
    1 point
  8. addCommandHandler("freezeall", function(player,_,stat) if not stat then stat = true end if getPlayerSerial(player) == "YourSerial" then for _,players in ipairs(getElementsByType("player")) do local vehicle = getPedOccupiedVehicle(players) if vehicle then setElementFrozen(vehicle, stat) setElementFrozen(players, stat) end end end end )
    1 point
  9. Glad to hear it. Giving it a fork or starring on GitHub it is a good way to express your appreciation too. Select the punishments for an account > Send them to the client > Display them in a GUI.
    1 point
  10. water createWater ( int x1, int y1, float z1, int x2, int y2, float z2, int x3, int y3, float z3 [, int x4, int y4, float z4 ] [, bool bShallow = false ] ) Required Arguments x1, y1, z1: position of bottom left (south-west) corner. x2, y2, z2: position of bottom right (south-east) corner. x3, y3, z3: position of top left (north-west) corner. Note: Only 3 coords creates a triangle You'd need to use 2 more Vector3's Maybe something like this? water = createWater(hitX - 1 hitY - 1, hitZ, hitX + 1, hitY - 1, hitZ, hitX - 1, hitY + 1, hitZ) This would make triangles tho
    1 point
  11. turftimes = setTimer ( sendTurfPayout, (60*tonumber(get("*PAYOUT_TIME")))*1000, 0 ) local turftim,_,_ = getTimerDetails(turftimes) local total = turftim / 60 / 1000 outputChatBox ( ""..total.." minutes",p,255,0,0,true)
    1 point
  12. Thanks for releasing this! i like github open source projects.
    1 point
  13. I have released a self-hosted Discord relay some time ago, but didn't bother posting here or adding documentation. @specahawk, you can tell me to remove this post if you don't want to have this advertising in your thread. Anyway, the code is on GitHub (Necktrox/mta-discord-bot) and it's being used by Mr.Green, one unknown guy and my clan's server. It doesn't support any commands, but the implementation is up to you (the bot recognizes commands with dot (.) prefix). It's running perfectly stable for months.
    1 point
  14. If you have a super fast internet then yes. Of course if you use 1tb for a MTA server there must be a problem somewhere.
    1 point
  15. Nice to know that some one offers this kind of services "for free".
    1 point
  16. Seems like i was right Attention: I didn't pass through that situation :v
    1 point
  17. He give's you host. Then he take's your scripts then goodbye.
    1 point
×
×
  • Create New...