-
Posts
7,337 -
Joined
-
Days Won
11
Everything posted by TAPL
-
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)
-
الويكي يقول الأفنت ذا رح يشتغل حتى لو الكومند غير موجود + حتى لما تكتب بالشات رح يشتغل الأفنت
-
ينقل إلى قسم البرمجة
-
توقع حجم قاعدة بيانات 1 قيقا بيوم واحد
-
أجب عن الأسئلة التالية: تعرف تسوي صورة؟ تعرف تخفي و تظهر صورة/لوحة؟ تعرف تشغل ملف صوت؟ تعرف تسوي تايمر؟
-
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)
-
You can use math.abs to make it positive number.
-
'onPlayerWasted' getPlayerTeam getTeamName getElementType getElementData or table setElementData or table createBlipAttachedTo
-
Then it's not a trigger issue anymore.
-
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)
-
لما اللاعب يسجل دخول حط اسم اللاعب في الحساب حقة اكاونت داتا و لما يغير اللاعب اسمه حط الأسم الجديد في الحساب اكاونت داتا إذا تبي تجيب اسم اللاعب من الأكاونت تجيبه من الأكاونت داتا الي حطيته لما سجل الدخول/غير اسمه getPlayerName getPlayerAccount isGuestAccount setAccountData getAccountData 'onPlayerLogin' 'onPlayerChangeNick'
-
The code where you've inserted the row.
-
OutPut = function(mta) outputChatBox(mta) end function onJoin() playSound("join.mp3") OutPut("Hello") end addEventHandler("onClientPlayerJoin", root, onJoin)
-
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)
-
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)
-
كودك فيه اخطاء outputChatBox يفترض تكتبها outputchatbox مثلا onjoin بينما اسم الفنكشن انت حاطه onJoin اسم الفنكشن الي رابط فيه الحدث غير موجود/nil بالكود الي انت حاطه ما ارسلت اي قيمة يعني البارتمر رح يكون mta بالنسبة للبارتمر
-
Comma is missing. local theMarker = createMarker(1176.19, -1339.09, 13.985, "cylinder", 3, 0, 255, 0)
-
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)
