Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 18/09/20 in all areas

  1. جبت لكم المود الأملاك الخاصه مع خصائص جديده من تصميم Mr.Doktor وبرمجة من طرف Mr.KAREEM الخصائص لوحة الأملاك الخاصه مع خاصية تغيير الألوان وخاصية حماية الموتر لوحة تفعيل بي السريال مع مدة التفعيل و نسخ البيانات لوحة اللوق لي الأملاك الخاصة رابط المود : هنا
    1 point
  2. السلام عليكم شبابء #~~ اليوم جبت اول يوم لي في الفورم وهو مود التوزيع .. المود منتشر يب لكن شكله منظم ومختلف ملحوظة : اللوحة تفتح برتبة Give و امر فتح اللوحة Give ايضاً الصور : صورة وانت لا تملك الصالحيات وانت تملك الصالحيات مميزات اللوحة : 1- اعطاء الفلوس بالايدت والاسلحة بالاديت 2- الشكل المنظم للوحة 3- اللوحة مب مشفرة 4- اللوحة تفتح ب رتبة معينة رابط التحميل : https://up.top4top.net/downloadf-1212z2wpr1-zip.html يارب المود يعجبكم وشكراً مقدماً #~~
    1 point
  3. يب فاهم بس حنا نعلمه إن يلي يسويه غلط وماراح يستفيد منه لأنه بينسخ ويلصق وماراح يتعلم أي شي لو مالقى الكود راح يضطر يتعلم حتى لو ماله نية إذا يبغا يسويه لو لقاه راح يستمر يسأل بكل شي يحتاجه
    1 point
  4. Hey, This is not freelance section, here we help each other. If you want some developer to make you a car shop you have to pay. Or you can learn make your own creature. Simple and basic idea, A checkpoint that opens a list of a cars and assign a car to each players that chooses an option. Work on it!
    1 point
  5. onPlayerCommand + outputChatBox سهل جداً كلها 4 سطور فقط, حاول عشان تتعلم.
    1 point
  6. Faça uma verificação, se o player esta em trabalho ou não, tanto com tabela ou elemento. Exemplo : -- table. local trabalhando = { } -- iniciar trabalho. trabalhando[source] = true -- pegar veiculo. if trabalhando[source] then print("Você pegou o veiculo do trabalho.") else print("Você não trabalha aqui para pegar veiculo.") end -- saiu do trabalho. trabalhando[source] = nil
    1 point
  7. Hi. 1) TriggerClientEvent is not a valid function, correct is triggerClientEvent. 2) Player variable is not defined (so it's nil) in LoginPanelShow and LoginPanelDelete. 3) Third argument is missing in triggerClientEvent, check syntax on wiki. -- CLIENT local login = {}; function login_show() login[1] = guiCreateWindow (0, 0, 0.5, 0.4, "Information", true); login[2] = guiCreateTabPanel (0, 0.1, 1, 1, true, login[1]); login[4] = guiCreateTab("Map Information", login[3]); login[5] = guiCreateTab("Help", login[4]); -- adds a label (text) to each tab guiCreateLabel(0.02, 0.04, 0.94, 0.2, "This is information about the current map", true, login[4]); guiCreateLabel(0.02, 0.04, 0.94, 0.92, "This is help text.", true, login[5]); end; addEvent("loginshow", true); -- listen to those events, which source is 'resourceRoot' addEventHandler("loginshow", resourceRoot, login_show); function login_delete() for i,k in ipairs(login) do if login[i] then guiSetVisible(login[i], false); end; end; end; addEvent("logindelete", true); addEventHandler("logindelete", resourceRoot, login_delete); -- SERVER -- addCommandHandler pass the player's element to function at first argument. (only on server side, check addCommandHandler's syntax on wiki) function LoginPanelShow(Player) -- send this trigger to 'Player', and use 'resourceRoot' as source of the event triggerClientEvent(Player, "loginshow", resourceRoot); end function LoginPanelDelete(Player) triggerClientEvent(Player, "logindelete", resourceRoot); end addCommandHandler("test1", LoginPanelShow); addCommandHandler("test2", LoginPanelDelete); And here is some excellent tutorials: - https://forum.multitheftauto.com/topic/64228-the-ultimate-lua-tutorial/ - https://forum.multitheftauto.com/topic/121619-lua-for-absolute-beginners - https://forum.multitheftauto.com/topic/95654-tut-debugging/ - https://forum.multitheftauto.com/topic/114541-tut-events/ - https://forum.multitheftauto.com/topic/117472-tut-scaling-dx/
    1 point
×
×
  • Create New...