FpX
Members-
Posts
15 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
FpX's Achievements
Square (6/54)
0
Reputation
-
Com o tamanho do marker 1.0 não conseguira hitar, o tamanho maximo para executar o hit é de 1.2 se não me engano, use: local markers = { -- Coordenadas dos markers {1212.459, -1312.881, 13.556}, {1213.0224609375, -1346.5224609375, 13.572437286377}, {1213.0107421875, -1351.5859375, 13.573674201965}, --preste atenção o ultimo marker não vai virgula no final!!! {1212.9951171875, -1358.228515625, 13.557479858398}, {1212.978515625, -1365.0283203125, 13.524266242981} } addEventHandler ("onResourceStart", resourceRoot, function() for _,pos in ipairs(markers) do local marker = createMarker(pos[1], pos[2], pos[3] -1, 'cylinder', 1.2, 30, 144, 255, 150) --tamanho/cor do marker pode alterar addEventHandler ("onMarkerHit", marker, MarkerHit) local blip = createBlipAttachedTo(marker, 56) --id do blip =56 pode alterar setBlipVisibleDistance(blip, 500) --distancia que é visto o blip no radar, pode alterar end end)
-
está dando este erro quando entro no veiculo: WARNING: [SystemAdm]BanimentoXiters\Script\cBan.lua:14: Bad argument @ 'getElementModel' [Expected element at argument 1, got boolean] addEventHandler("onClientRender", root, function() if isPedInVehicle(localPlayer) then local Carro = getPedOccupiedVehicle(localPlayer) local currentVeh = getElementModel(Carro) -- LINHA DO ERRO AQ if Config["IdsBloqs"]["VehBloq"][tonumber(currentVeh)] then triggerServerEvent("FP:BanXiter", getLocalPlayer(), localPlayer, currentVeh, "Veiculo") end end end)
-
Quando alguem compra ou pega um veiculo este erro surge: ERROR: [SystemConce]Concessionaria\Script\sConce.lua:110: attempt to index field '?' (a nil value) Linha 110: message(source, "Você comprou "..(Config["customCarNames"][tonumber(Model)] or getVehicleNameFromModel(Model)).." Da Garagem", "Sucesso")
-
Mas aqui só vi como criar o painel gui e sobre como classificar rank? tipo colocar em ordem descrecente os valores de um element data? Mas aqui só vi como criar o painel gui e sobre como classificar rank? tipo colocar em ordem descrecente os valores de um element data?
-
Estou precisando criar um painel para bater ponto, nisso eu queria por uma aba com os melhores pms que fizeram mais patrulhamento por exemplo, como posso fazer com que o nome e quantidade de horas em patrulhamento dos players fiquem em ordem decrescente? só de passar algum evento da wiki já ajuda dms<3
-
Por que o toggleControl ( source, "chatbox", true ) não esta indo? não da erro no debugscript, e nem devolve a funçao do chatbox
-
como fasso para saber quantas mensagens o player esta mandando no say? exemplo, ao mandar uma mensagem no "say" ele ter que esperar 3 segundos para enviar novamente. queria saber como fasso pra contar quantas mensagens ele enviou
-
------------------------------------------------------------------------------ -------------------------------[PORTÃO PRENDER]------------------------------- ------------------------------------------------------------------------------ --- MARKERS --- local gate3 = createObject(986, 1588.599609375, -1638.2998046875, 13.199999809265, 0, 0, 0) local marker3 = createMarker(1588.599609375, -1638.2998046875, 13.199999809265, "cylinder", 5, 0, 0, 0, 0) --- FUNÇÃO ABRIR --- function moveGate3(thePlayer) if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(thePlayer)) , aclGetGroup("Policial")) then -- LINHA 16 QUE DA O ERRO DO DEBUG moveObject(gate3, 1000, 1588.599609375, -1638.2998046875, 4.5) end end addEventHandler("onMarkerHit", marker3, moveGate3) --- FUNÇÃO FECHAR --- function move_back_gate3() moveObject(gate3, 1000, 1588.599609375, -1638.2998046875, 13.199999809265) end addEventHandler("onMarkerLeave", marker3, move_back_gate3) Sempre que alguem com veiculo que possui a acl policial tenta passar pelo portão dá os seguintes erros: WARNING: [MAPA]DP/Portao/portaoPrender.lua:16: Bad argument @'getPlayerAccount'[Expected player or console at argument 1, got vehicle] WARNING: [MAPA]DP/Portao/portaoPrender.lua:16: Bad argument @'getAccountName'[Expected account at argument 1, got boolean] ERROR: [MAPA]DP/Portao/portaoPrender.lua:16: attempt to concatenate a boolean value Como posso resolver? Tenho que especificar que ele ta no veiculo ou algo do tipo?
-
Olá, preciso aprender sobre este arquivo, pra aprender por exemplo como posso colocar o preso em 1 posição aleatoria entre 4. Resumindo= Como colocar ele pra ir para uma das 4 celas aleatoriamente. assim poderia aplicar para mais coisas. Obrigado.
-
TEM ALGUMA FORMA DE FAZER UM HUD APARECER SOMENTE QUANDO O PLAYER ESTIVER COM A ARMA NA MÃO? EXEMPLO, SE O PLAYER NÃO TEM ARMAS, O HUD NÃO APARECE, MAS SE ELE TIVER ARMAS APARARECER.
-
addEventHandler('onResourceStart', getResourceRootElement(getThisResource()), function() db = dbConnect('sqlite', 'prisao.db') dbExec(db, 'Create table if not exists presos(login, tempo)') setTimer(function() for _, player in ipairs(getElementsByType('player')) do if getPlayerPreso(player) then local result = dbPoll(dbQuery(db, 'Select * from presos Where login = ?', getAccountName(getPlayerAccount(player))), - 1) if #result ~= 0 then setTimer(function(player) setPlayerPreso(player, result[1]['tempo']) end, 500, 1, player) end end end end, 500, 1) end ) COMO EU PODERIA COLOCAR PARA ESTA FUNÇÃO REINICIAR POR EXEMPLO A CADA 20 SEGUNDOS? ME AJUDE PF
-
EU QUERO CRIAR UM COMANDO PARA DAR DINHEIRO PARA QUEM ESTIVER ONLINE, E QUEM ESTIVER NA ACL. PEÇO LINKS DE SITES QUE TEM ALGO RELACIONADO A ISSO OU VIDEOS, NÃO TENHO IDEIA DE COMO POSSO FAZER. QUERO SÓ UMA DICA DE COMO INICIAR, OU O LINK DA WIKI DO EVENTO QUE POSSO USAR. AGRADEÇO DESDE JA. I WANT TO CREATE A COMMAND TO GIVE MONEY TO WHOEVER IS ONLINE, AND WHO IS ON ACL. I ASK FOR LINKS TO SITES THAT HAVE SOMETHING RELATED TO IT OR VIDEOS, I HAVE NO IDEA HOW I CAN DO IT. I JUST WANT A TIP ON HOW TO START, OR THE EVENT WIKI LINK THAT I CAN USE. THANKS IN ADVANCE.
-
function SairPrisao (playerSource,commandName,id) if isObjectInACLGroup ( "user." ..getAccountName(getPlayerAccount(playerSource)), aclGetGroup ("Prisão")) then if(id) then local playerID = tonumber(id) if(playerID) then setElementPosition(playerSource, 1552.603, -1675.62, 16.195) setElementDimension(playerSource, 0) setElementInterior(playerSource, 0) exports.Scripts_OnMarkerMsgs_:delete2 ( ) setElementData ( playerSource, "AirNew_PagouFianca", "Sim" ) setElementData ( playerSource, "AirNew_Tempo_Prisao", tonumber(0) ) setElementData ( playerSource, "AirNew_Preso", "Não" ) end end end end addCommandHandler("c", SairPrisao) Então, Meu plano é liberar uma pessoa da prisão por id. exemplo: o id 56 ta preso e quero dar o comando /c 56 e ele sair da prisão. esta funcionando mais não do jeito que eu quero, eu dou /c e qualquer id e libera somente eu. e se eu der /c em qualquer momento estando preso ou não eu sou teleportado para a posição destinada ali, e não quero isso. quem puder ajudar agradeço. SISTEMA QUE ESTOU USANDO: https://www.mtabrasil.com.br/2019/11/sistema-de-prisaoprender-f9.html So My plan is to release a person from prison by id. example: id 56 is in jail and I want to give the command /c 56 and he gets out of prison. it's working but not the way I want, I give /c and any id and release only me. and if I hit /c at any time whether I'm stuck or not I'm teleported to the destined position there, and I don't want that. who can help thank you. SYSTEM I'M USING: https://www.mtabrasil.com.br/2019/11/sistema-de-prisaoprender-f9.html
-
[HELP] I AM WANT TO CREATE A BLIP FOR ONE ACL VER ONLY. EXAMPLE: I WANT TO CREATE A BLIP FROM A POLICE BASE BUT ONLY WHO IS IN THE "POLICE" ACL CAN SEE THE BLIP. [AJUDA] ESTOU QUERENDO CRIAR UM BLIP PRA SOMENTE UM ACL VER. EXEMPLO: QUERO CRIAR UM BLIP DE UMA BASE POLICIAL MAS SOMENTE QUEM ESTIVER NA ACL "POLICIAL" PODERAR VER O BLIP. function Blip ( ) BlipTeste = createBlip (985.97, -1310.37, 13.525, 30) setElementVisibleTo(BlipTeste, root, false) if isObjectInACLGroup ( "user." ..getAccountName(getPlayerAccount(playerSource)), aclGetGroup ("Policial")) then setElementVisibleTo(BlipTeste, somePlayer, true) end end addEventHandler ("onClientRender", BlipTeste, Blip)