Jump to content

TAPL

Retired Staff
  • Posts

    7,337
  • Joined

  • Days Won

    11

Everything posted by TAPL

  1. TAPL

    new dmg

    المود موجود عندي مسويه قبل حوالي 3 أو 4 أشهر إذا تبيه بفلوس كلمني خاص
  2. onPlayerChat cancelEvent outputChatBox
  3. marker = createMarker( x,y,z, "cylinder", 4, 255, 255, 0, 255 ) blip1 = createBlip (x,y,z, id) blip2 = createBlip (x,y,z, id) setElementVisibleTo(blip2,getRootElement(),false) addEventHandler ( "onMarkerHit", marker, function ( player ) if ( getElementType ( player ) == "player" ) then setElementVisibleTo(blip1, player, false ) setElementVisibleTo(blip2,player,true) end end ) هاذا الكود ممكن تصحيح ما فهمت ايش المشكلة أنت أول شي تسوي بلب أثنين و تخفي البلب الثاني عن الكل و لاحظ أنك تخفي البلب الأول عن اللاعب الي خش الماركر فقط أما باقي اللاعبين بيكون ظاهر عندهم وبنفس الوقت تظهر البلب الثاني للاعب الي خش الماركر فقط
  4. حط كودك كامل بدل ما تضيع وقتنا بتخمين مشكلتك
  5. setElementVisibleTo
  6. You maybe mean this? getElementByID
  7. I didn't understand where you get nil. Again at line 3 and line 8 (server side), Name is before Serial. Not sure if that actually an problem, but just fix it.
  8. -- Server Side !!! Event: "onMarkerHit" createMarker createVehicle warpPedIntoVehicle destroyElement givePlayerMoney
  9. addEvent ( "SendRequest", true ) addEventHandler ( "SendRequest", root, function ( Number, Url, Serial, Name ) setReceiving_System ( Number, Url, Serial, Name ) triggerClientEvent ( root, "ListRequest", root, Number, Url, Serial, Name ) end ) Name is before Serial. triggerServerEvent("SendRequest",localPlayer,Number,Url,Name,Serial)
  10. No one has allowed him to use our design. https://community.multitheftauto.com/ind ... ls&id=6944 DONE
  11. وعليكم السلام السيرفر على أي استضافة؟ كم سرعة أتصالك؟ كم حجم التحميل؟ ركبت أي سيارة مثلاً و صار التحميل واقف/معلق او بطئ؟ تأكد أن مافيه عندك مود مسبب لاق للسيرفر و يسبب بطئ في التحميل
  12. It will be better if you use spawnPlayer instead of setElementPosition and setPlayerTeam and setElementModel. For the team, you will need to get the team element, use getTeamFromName to get the team element from team name or the variable of the team if it was in same resource.
  13. TAPL

    get All Bans

    If i am not wrong, at line 10 the first column id is 1 not 0. And at line 16, you should use localPlayer instead of root.
  14. I don't know why myonlake was thinking that the function is only server-side, i just tried it client-side and it was works so i just undo what he did.
  15. 1- المود مو شغال 2- أنت حاطه كلينت بدلاً من سيرفر 3- في كود خطأ بنفس الملف
  16. TAPL

    Gui Window

    You must use relative also for buttons, images, edits and labels.
  17. مدري ليه عندك ذكاء خارق بس اضن انك تبي الكلام يجي إلى الي قتل البيدا طبعاً هو من اسمه تعرفه killer
  18. من وين جبته؟ player في سطر 3
  19. Skins table already can be generated through this function getValidPedModels
  20. وش فيكم؟ تهلوسون؟ لتيم واحد !! سطر واحد setTeamFriendlyFire(getTeamFromName("Police"), false)
  21. هذا تسويه بالفنكشن ذا createColPolygon بس طريقته معقده شوي
  22. ممكن بس المود صعب و معقد تستخدم فنكشن صناعة الأسلحة https://wiki.multitheftauto.com/wiki/Client_Scripting_Functions#Weapon_Creation_functions
  23. The math.random will apply only once, it won't apply every 60 seconds. You will need to put anonymous function inside the timer,
  24. TAPL

    colshape

    local colshape = createColCuboid( 1107.72, -2080.25, 0, 194, 100, 100) function projectiles(hitElement) if source == colshape then if getElementType(hitElement) == "player" then local data = getElementData(hitElement, "Basejuli") if data == "Aceptado" then outputChatBox("Bienvenido a la base", hitElement, 0, 255, 0) elseif data == "Rechazado" or data == nil then outputChatBox("Intruso detectado. Lanzando projectiles...", hitElement, 255, 0, 0) end end end end addEventHandler("onColShapeHit", root, projectiles)
  25. TAPL

    please Help !

    You're welcome.
×
×
  • Create New...