Jump to content

TAPL

Retired Staff
  • Posts

    7,337
  • Joined

  • Days Won

    11

Everything posted by TAPL

  1. TAPL

    Destroy element

    You cann't destroy element data but you can remove it with this function removeElementData, or set the data to false or nil. if you have an element in the data, the element will be destroyed.
  2. TAPL

    Adminnick

    https://forum.multitheftauto.com/viewforum.php?f=168
  3. TAPL

    Adminnick

    What? huh What are you talking about, since when you can have a name with space?
  4. TAPL

    Adminnick

    What?
  5. انا قلت انقل الكود من سطر 21 إلى 29 onClientResourceStart و حطه داخل الأفنت ما قلت لك احذف اي شي مجرد تغير مكان الكود + ما اشوف سويت التريقر
  6. انت الي اكتب الكود بعد التعديل مو انا ههه و لاتنسى تكتب الأخطاء الي بالدي بق
  7. This is server side, so make sure you have it server side on the meta.
  8. local myshape = createColCircle(1049.6279296875, -1029.674804687, 4) function ColHit(hitElement) if getElementType(hitElement) == "vehicle" then if not getVehicleController(hitElement) then destroyElement(hitElement) end end end addEventHandler("onColShapeHit", myshape, ColHit)
  9. TAPL

    How to make a module?

    This most likely the only info available about modules in the wiki. https://wiki.multitheftauto.com/wiki/Modules
  10. function moveCrim(theAttacker, attackerWeapon) if theAttacker and getElementType(theAttacker) == "player" and (attackerWeapon == 33) then setElementFrozen(source, true) setTimer(function(source) setElementFrozen(source, false) end, 5000, 1, source) end end addEventHandler("onPlayerDamage", getRootElement(), moveCrim)
  11. setTimer(function() local winner, time = findRaceWinner(raceMap) end, 240000, 1)
  12. :leftfighter1: :leftfighter1: :leftfighter1: :leftfighter1: :leftfighter1: :leftfighter1: :leftfighter1: :leftfighter1: :leftfighter1: :leftfighter1: :leftfighter1: :leftfighter1:
  13. كودك فيه هريس الي ما فهمته وش فايده الألمنت داتا ذا الي تحطه اول ما يدخل اللاعب و ما اشوف غيرت الالمنت داتا في اي مكان ثاني السورس فيه مو لاعب onResourceStart اضافة إلى ان الأفنت
  14. ^^ ردود خارج الموضوع و هواش ضض بما ان المشكلة انحلت يعلق
  15. من سطر 21 إلى 29 onClientResourceStart حطه داخل الأفنت و لاتنسى تسوي تريقر للسيرفر عشان تسوي السيارة لان سيارة الكلينت ما تقدر تركبها + محد يشوفها غيرك
  16. He used my leaked script codes and changed the gui to look different, but as i made the codes i can know it's my codes as the database layout, data used and how the script act is exactly how my codes made. https://community.multitheftauto.com/index.php?p=resources&s=details&id=9459
  17. تعلم برمجة محد راح يسوي شي عنك هنا للمساعدة فقط
  18. Not possible at this time because there only 3 skills available. There's suggestion for add skill: https://bugs.multitheftauto.com/view.php?id=8192
  19. يب صحيح لقيت واحد يكلمني واتس اب يقول لي رقمك ناشره جوبا باليوتيوب ولا كيف تحسب انا عرفت عن الفيديو؟ ههه
  20. TAPL

    [help] db

    The wiki examples not enough? https://wiki.multitheftauto.com/wiki/DbExec Well, maybe the tutorial topic? https://forum.multitheftauto.com/viewtopic.php?f=148&t=38203 Check this site for SQL syntaxes and for more examples: http://www.w3schools.com/sql/sql_insert.asp
  21. local vehs = {} addEvent("VIPCVehicle", true) addEventHandler("VIPCVehicle", root, function() if exports.vip_system:isPlayerDonator(source) then if (isElement(vehs[source])) then destroyElement(vehs[source]) vehs[source] = nil end local x, y, z = getElementPosition(source) vehs[source] = createVehicle(411, x+3, y, z+1) outputChatBox("[VIP]Vehicle Created", source, 255, 255, 0) end end) addEvent("VIPDVehicle", true) addEventHandler("VIPDVehicle", root, function() if exports.vip_system:isPlayerDonator(source) then if (isElement(vehs[source])) then destroyElement(vehs[source]) vehs[source] = nil outputChatBox("[VIP]Vehicle Destroyed", source, 255, 0, 0) end end end) function VIPCVehicle () triggerServerEvent ("VIPCVehicle", localPlayer) end addEventHandler("onClientGUIClick", GUIEditor.button[3], VIPCVehicle, false) function VIPDVehicle () triggerServerEvent ("VIPDVehicle", localPlayer) end addEventHandler("onClientGUIClick", GUIEditor.button[4], VIPDVehicle, false)
  22. صرت مشهور بفضل الفيديو ذا ههههههههههههههههههههههههههههههههههههههههههه
  23. ترا صاحب الموضوع حط الموضوع و سجل خروجه يعني ساحب على الموضوع و حنا المفروض نسحب عليه بعد لين يرد
  24. :D Who Said That luac.multitheftauto.com Compiler can be decompiled ? You should ask yourself.
  25. It's been compiled for a reason, if everyone was able to decompiler then why the hell we waste our time and effort to compile our resources? Your wish is pointless.
×
×
  • Create New...