Jump to content

TAPL

Retired Staff
  • Posts

    7,337
  • Joined

  • Days Won

    11

Everything posted by TAPL

  1. ينقل إلى قسم البرمجة
  2. addEventHandler("onClientPlayerRadioSwitch", root, function() local vehicle = getPedOccupiedVehicle(localPlayer) if (vehicle) then if (getElementModel(vehicle) == 432) then if getRadioChannel() ~= 0 then setRadioChannel(0) cancelEvent() end end end end)
  3. الويكي يقول الأفنت ذا رح يشتغل حتى لو الكومند غير موجود + حتى لما تكتب بالشات رح يشتغل الأفنت
  4. ينقل إلى قسم البرمجة
  5. توقع حجم قاعدة بيانات 1 قيقا بيوم واحد
  6. ينقل إلى قسم البرمجة
  7. أجب عن الأسئلة التالية: تعرف تسوي صورة؟ تعرف تخفي و تظهر صورة/لوحة؟ تعرف تشغل ملف صوت؟ تعرف تسوي تايمر؟
  8. TAPL

    سؤال

    addEventHandler("onPlayerWasted", root, function(_, killer) if killer and getElementType(killer) == "player" and killer ~= source then local checkGuest = getPlayerAccount(killer) if not isGuestAccount(checkGuest) then local Tkill = tonumber(getAccountData(checkGuest, "kills") or 0) if (Tkill+1 >= 1) then setAccountData(checkGuest, "kills", 0) setAccountData(checkGuest, "Level", (getAccountData(checkGuest, "Level") or 0) + 1) local TopTable = {} for i, account in ipairs(getAccounts()) do table.insert(TopTable, {account, (getAccountData(account, "Level") or 0)}) end table.sort(TopTable, function(a, b) return a[2] > b[2] end) outputChatBox("Player Name: "..(getAccountData(TopTable[1][1], "name") or "N/A").." | Level: "..TopTable[1][2], killer, 255, 255, 255) else setAccountData(checkGuest, "kills", Tkill+1) end end end end) addEventHandler("onPlayerLogin", root, function(_, account) setAccountData(account, "name", getPlayerName(source)) end) addEventHandler("onPlayerChangeNick", root, function(_, new) local account = getPlayerAccount(source) if not isGuestAccount(account) then setAccountData(account, "name", new) end end)
  9. You can use math.abs to make it positive number.
  10. 'onPlayerWasted' getPlayerTeam getTeamName getElementType getElementData or table setElementData or table createBlipAttachedTo
  11. TAPL

    [HELP]Lua

    source should work, if it didn't appear in the chat it may be your text is too long.
  12. Then it's not a trigger issue anymore.
  13. function wyladunki(player) if player == localPlayer then if source == punkt then local kasa = guiGetText(wynagrodzenie) exports["notifications"]:showBox("info", "Dostarczyłeś ładunek. Twoje wynagrodzenie to: "..kasa) triggerServerEvent("hajsy", localPlayer, kasa) destroyElement(punkt) destroyElement(blip) punkt = nil blip = nil trasa = false end end end addEventHandler("onClientMarkerHit", root, wyladunki) function manimani(kasa) givePlayerMoney(client, tonumber(kasa)) end addEvent("hajsy", true) addEventHandler("hajsy", root, manimani)
  14. TAPL

    سؤال

    لما اللاعب يسجل دخول حط اسم اللاعب في الحساب حقة اكاونت داتا و لما يغير اللاعب اسمه حط الأسم الجديد في الحساب اكاونت داتا إذا تبي تجيب اسم اللاعب من الأكاونت تجيبه من الأكاونت داتا الي حطيته لما سجل الدخول/غير اسمه getPlayerName getPlayerAccount isGuestAccount setAccountData getAccountData 'onPlayerLogin' 'onPlayerChangeNick'
  15. TAPL

    [HELP] SQLite

    The code where you've inserted the row.
  16. TAPL

    [HELP] SQLite

    Post the insert code.
  17. TAPL

    سؤال

    OutPut = function(mta) outputChatBox(mta) end function onJoin() playSound("join.mp3") OutPut("Hello") end addEventHandler("onClientPlayerJoin", root, onJoin)
  18. TAPL

    [HELP] SQLite

    Try. connection = dbConnect( "sqlite", "groups.db" ) function test(account, key) for i, values in ipairs(getAccounts()) do if values == account then local query = dbQuery(connection, "SELECT value FROM groups WHERE userid =? AND key =?", i, key) return dbPoll(query, -1) end end end addCommandHandler("lol", function(p) for i, row in ipairs(getDBAccountData(getPlayerAccount(p), "Ranks")) do for column, value in pairs(row) do outputChatBox(column..": "..value) end end end)
  19. function aa(player) local TopTable = {} for i, account in ipairs(getAccounts()) do table.insert(TopTable, {account, (getAccountData(account, "Level") or 0)}) end table.sort(TopTable, function(a, b) return a[2] > b[2] end) outputChatBox("AccountName: "..getAccountName(TopTable[1][1]).." | Level: "..TopTable[1][2], player, 255, 255, 255) end addCommandHandler("chl", aa)
  20. TAPL

    سؤال

    كودك فيه اخطاء outputChatBox يفترض تكتبها outputchatbox مثلا onjoin بينما اسم الفنكشن انت حاطه onJoin اسم الفنكشن الي رابط فيه الحدث غير موجود/nil بالكود الي انت حاطه ما ارسلت اي قيمة يعني البارتمر رح يكون mta بالنسبة للبارتمر
  21. TAPL

    [Help]medkit

    You're welcome.
  22. TAPL

    [Help]medkit

    Comma is missing. local theMarker = createMarker(1176.19, -1339.09, 13.985, "cylinder", 3, 0, 255, 0)
  23. addEventHandler("onPlayerWasted", root, function(_, killer) if killer and getElementType(killer) == "player" and killer ~= source then local checkGuest = getPlayerAccount(killer) if checkGuest and not isGuestAccount(checkGuest) then local Tkill = tonumber(getAccountData(checkGuest, "kills") or 0) if (Tkill+1 >= 50) then setAccountData(checkGuest, "kills", 0) setAccountData(checkGuest, "Level", (getAccountData(checkGuest, "Level") or 0) + 1) else setAccountData(checkGuest, "kills", Tkill+1) end end end end) function aa(player) local TopTable = {} for i, account in ipairs(getAccounts()) do table.insert(TopTable, {account, (getAccountData(account, "Level") or 0)}) end table.sort(TopTable, function(a, b) return a[2] > b[2] end) for i, value in ipairs(TopTable) do outputChatBox("AccountName: "..getAccountName(value[1]).." | Level: "..value[2], player, 255, 255, 255) end end addCommandHandler("chl", aa)
×
×
  • Create New...