Jump to content

Maaster

Members
  • Posts

    104
  • Joined

  • Last visited

Everything posted by Maaster

  1. isso era pra ser ''se o player estiver com o ElementData 'ModoPassivo' entao'', mas como o source eh o veiculo, e não o player, então esta errado? se sim, entao qual seria o elemento do jogador? if getElementData(source,"ModoPassivo") then
  2. Não entendi muito bem, mais tentei fazer isso ai: addEventHandler("onVehicleEnter",root, function() if getElementData(source,"ModoPassivo") then if getVehicleOccupant(source) == 0 then setElementAlpha(source,145) end end end ) não deu certo, mais também n esta aparecendo nenhum erro no debug
  3. Quero deixar todos os veículos que um jogador entrar enquanto o modo passivo estiver ativo, fique no ghostmode (sem colisão) e transparente. este e o script: ------------------------------Server------------------------------ local acls = { "Everyone" } local cmd = "passivo" -- Comando Pra Desativar / Ativar o modo Passivo local AtivarBind = false -- Ativar / Desativar o Uso de Bind Pra Desativar / Ativar o modo Passivo ( true = Ativado ) / ( false = Desativado ) local LetraOuNumeroParaBind = "b" ------------------------------.------------------------------ addEventHandler( "onResourceStart", resourceRoot, function() for _,v in pairs(getElementsByType("player")) do if AtivarBind == true then bindKey(v, LetraOuNumeroParaBind, "down", toggleGodMode) end end end ) ------------------------------.------------------------------ addEventHandler( "onPlayerJoin", root, function() if AtivarBind == true then bindKey(source, LetraOuNumeroParaBind, "down", toggleGodMode) end end ) ------------------------------.------------------------------ function toggleGodMode(thePlayer) local account = getPlayerAccount(thePlayer) if (not account or isGuestAccount(account)) then return end local accountName = getAccountName(account) for i, v in pairs ( acls ) do if ( isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( v ) ) ) then if getElementData(thePlayer,"Desativando>ModoPassivo") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF]• Aguarde o Tempo de Desativar o Modo Passivo Para Usar esse Comando', thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"Ativando>ModoPassivo") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF]• Aguarde o Tempo de Ativação do Modo Passivo Para Usar esse Comando', thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"Ativado>Start15Segundos") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF]• Aguarde 15 Segundos Para Utilizar esse Comando Novamente', thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"Desativado>Start5Minutos") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] • Aguarde 5 Minutos Para Utilizar esse Comando Novamente', thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"isPolice",true) then outputChatBox ( "#000000[#FF0000 Erro #000000]#FFFFFF Voce e um policial, nao pode ativar o modo passivo!", thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"emEvento",true) then outputChatBox ( "#000000[#FF0000 Erro #000000]#FFFFFF Voce esta em um evento!", thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"emArena",true) then outputChatBox ( "#000000[#FF0000 Erro #000000]#FFFFFF Voce esta em uma arena!", thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"ModoPassivo") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] • Desativando Modo Passivo em 15 Segundos', thePlayer, 255, 255, 255, true ) setTimer ( DesativarPassivo, 10000, 1, thePlayer) setElementData ( thePlayer, "Desativando>ModoPassivo", true ) else outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] • Ativando Modo Passivo em 10 Segundos', thePlayer, 255, 255, 255, true ) setTimer ( AtivarPassivo, 10000, 1, thePlayer) setElementData ( thePlayer, "Ativando>ModoPassivo", true ) end break end end end addCommandHandler ( cmd, toggleGodMode ) ------------------------------DesativarModoPassivo------------------------------ function DesativarPassivo (thePlayer) setElementData ( thePlayer, "Desativando>ModoPassivo", false ) setElementData(thePlayer,"ModoPassivo",false) setElementData(thePlayer,"greenzone",false) toggleControl (thePlayer, "fire", true) toggleControl (thePlayer, "next_weapon", true) toggleControl (thePlayer, "previous_weapon", true) toggleControl (thePlayer, "aim_weapon", true) toggleControl (thePlayer, "vehicle_fire", true) setVehicleDamageProof(thePlayer,false) setElementAlpha(thePlayer, 255) outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] Modo Passivo #FF0000( Desativado )', thePlayer, 255, 255, 255, true ) -- outputChatBox ( "• O Jogador "..getPlayerName(thePlayer).." #ffffffDesativou o Modo Passivo", root, 255, 255, 255, true ) -- Msg Para Todos setElementData ( thePlayer, "Desativado>Start5Minutos", true ) setTimer ( setElementData, 300000, 1, thePlayer, "Desativado>Start5Minutos", false ) end ------------------------------AtivarModoPassivo------------------------------ function AtivarPassivo (thePlayer) setElementData ( thePlayer, "Ativando>ModoPassivo", false ) setElementData(thePlayer,"ModoPassivo", true) setElementData(thePlayer,"greenzone", true) toggleControl (thePlayer, "fire", false) toggleControl (thePlayer, "next_weapon", false) toggleControl (thePlayer, "previous_weapon", false) toggleControl (thePlayer, "aim_weapon", false) toggleControl (thePlayer, "vehicle_fire", false) setPedWeaponSlot (thePlayer, 0 ) setVehicleDamageProof(thePlayer, true) setElementAlpha(thePlayer, 145) outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] Modo Passivo #00FF00( Ativado )', thePlayer, 255, 255, 255, true ) -- outputChatBox ( "• O Jogador "..getPlayerName(thePlayer).." #ffffffAtivou o Modo Passivo", root, 255, 255, 255, true ) -- Msg Para Todos setElementData ( thePlayer, "Ativado>Start15Segundos", true ) setTimer ( setElementData, 15000, 1, thePlayer, "Ativado>Start15Segundos", false ) end ------------------------------.------------------------------ function VerificarModo (player) if getElementData ( player,"ModoPassivo" ) == true then toggleControl ( player, "fire", false) toggleControl ( player, "next_weapon", false) toggleControl ( player, "previous_weapon", false) toggleControl ( player, "aim_weapon", false) toggleControl ( player, "vehicle_fire", false) setPedWeaponSlot ( player, 0 ) else if not getElementData (player, "EmAreaVerde") == true then toggleControl ( player, "fire", true ) toggleControl ( player, "next_weapon", true ) toggleControl ( player, "previous_weapon", true ) toggleControl ( player, "aim_weapon", true ) toggleControl ( player, "vehicle_fire", true ) end end end ------------------------------Timer------------------------------ setTimer( function() for i, player in pairs(getElementsByType("player")) do if player ~= (false or nil) then VerificarModo(player) end end end, 1000,0) ------------------------------OutroMod------------------------------ function outputMessage (text, player, r, g, b) return exports["Mod-MPLIB"]:outputMessage(player, text, r, g, b); end ------------------------------Client------------------------------ setElementData ( localPlayer, "Timer:Passivo", false ) setElementData ( localPlayer, "ModoPassivo", false ) setElementData ( localPlayer, "Ativando>ModoPassivo", false ) setElementData ( localPlayer, "Desativando>ModoPassivo", false ) setElementData ( localPlayer, "Desativado>Start5Minutos", false ) setElementData ( localPlayer, "Ativado>Start15Segundos", false ) ------------------------------.------------------------------ addEventHandler("onClientVehicleDamage",root, function() local player = getVehicleOccupant(source) -- / Pegou o player que está dentro daquele veiculo, caso não tenha um player ele retornaria false if player then -- / Vi se encontrou um player naquele veiculo, para caso caso ele retorne um valor boolean if getElementData(player,"ModoPassivo") then -- vi se o player que está dentro do carro está com esse elementdata cancelEvent() -- se estiver ele vai cancelar o evento. end end end ) ------------------------------.------------------------------ addEventHandler ( "onClientPlayerDamage",root, function () if getElementData(source,"ModoPassivo") then cancelEvent() end end ) ------------------------------.------------------------------ addEventHandler("onClientPlayerStealthKill",localPlayer, function (targetPlayer) if getElementData(targetPlayer,"ModoPassivo") then cancelEvent() end end ) ------------------------------.------------------------------ addEventHandler ( "onClientPlayerDamage",root, function () if getElementData(source,"ModoPassivo") then cancelEvent() end end ) ------------------------------.------------------------------ addEventHandler("onClientPlayerStealthKill",localPlayer, function (targetPlayer) if getElementData(targetPlayer,"ModoPassivo") then cancelEvent() end end ) ------------------------------.------------------------------ addEventHandler( 'onClientRender', root, function( ) for _, player in ipairs( getElementsByType( 'player') ) do if isElementOnScreen( player ) and getElementData( player, 'ModoPassivo' ) then local cx, cy, cz, x, y, z, dist local x, y, z = getElementPosition( player ); local cx, cy, cz = getCameraMatrix( ); dist = math.sqrt( ( cx - x ) ^ 2 + ( cy - y ) ^ 2 + ( cz - z ) ^ 2 ) if dist < 32.0 then if isLineOfSightClear( cx, cy, cz, x, y, z, true, false, false, true, false, false, false,localPlayer ) then local sx, sy, sz = getPedBonePosition( player, 2 ) local x,y = getScreenFromWorldPosition( sx, sy, sz + 0.15 ) if x then dxDrawText("Modo Passivo", x, y, 30, 30, tocolor(255, 255, 255, 200), 1, "default-bold", "left", "top") end end end end end end ); Tentei isso ai a baixo, (onClientVehicleEnter) mais não deu certo addEventHandler("onVehicleEnter",root, function() local player = getVehicleOccupant(source) if player then if getElementData(player,"ModoPassivo") then setElementAlpha(player,145) end end end ) -------------------------------------------------------------------------------------------------------- addEventHandler("onVehicleExit",root, function() local player = getVehicleOccupant(source) if player then if getElementData(player,"ModoPassivo") then setElementAlpha(player,255) end end end )
  4. -------------------------------------------------------------------------------------------------------- addEventHandler("onVehicleEnter",root, function() local player = getVehicleOccupant(source) if player then if getElementData(player,"ModoPassivo") then setElementAlpha(player,145) end end end ) -------------------------------------------------------------------------------------------------------- addEventHandler("onVehicleExit",root, function() if getElementData(player,"ModoPassivo") then -- vi se o player que está dentro do carro está com esse elementdata setElementAlpha(player,255) end end ) Deu certo, obrigado! e sobre a parte da invisibilidade no veiculo, como faço? tentei isso ai mais nao deu certo, e se possível ja ensina tambem como remover a colisão do veiculo
  5. addEventHandler ( "onClientVehicleDamage",root, function () if getElementData(source,"ModoPassivo") then cancelEvent() end end ) Tentei usar isso ai, mais n deu certo
  6. Quero deixar todos os veículos que um jogador com o modo passivo ativo pegar, fique indestrutível e transparente. Acho que se eu colocar "setVehicleDamageProof(thePlayer, true)" na hora que o jogador entrar no modo passivo, só vai ativar pro veiculo que ele esta no momento, oque eu quero fazer eh deixar indestrutível e trasnparente todos os veiculos que ele entrar ------------------------------.------------------------------ local acls = { "Everyone" } local cmd = "passivo" -- Comando Pra Desativar / Ativar o modo Passivo local AtivarBind = false -- Ativar / Desativar o Uso de Bind Pra Desativar / Ativar o modo Passivo ( true = Ativado ) / ( false = Desativado ) local LetraOuNumeroParaBind = "b" ------------------------------.------------------------------ addEventHandler( "onResourceStart", resourceRoot, function() for _,v in pairs(getElementsByType("player")) do if AtivarBind == true then bindKey(v, LetraOuNumeroParaBind, "down", toggleGodMode) end end end ) ------------------------------.------------------------------ addEventHandler( "onPlayerJoin", root, function() if AtivarBind == true then bindKey(source, LetraOuNumeroParaBind, "down", toggleGodMode) end end ) ------------------------------.------------------------------ function toggleGodMode(thePlayer) local account = getPlayerAccount(thePlayer) if (not account or isGuestAccount(account)) then return end local accountName = getAccountName(account) for i, v in pairs ( acls ) do if ( isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( v ) ) ) then if getElementData(thePlayer,"Desativando>ModoPassivo") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF]• Aguarde o Tempo de Desativar o Modo Passivo Para Usar esse Comando', thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"Ativando>ModoPassivo") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF]• Aguarde o Tempo de Ativação do Modo Passivo Para Usar esse Comando', thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"Ativado>Start15Segundos") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF]• Aguarde 15 Segundos Para Utilizar esse Comando Novamente', thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"Desativado>Start5Minutos") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] • Aguarde 5 Minutos Para Utilizar esse Comando Novamente', thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"isPolice",true) then outputChatBox ( "#000000[#FF0000 Erro #000000]#FFFFFF Voce e um policial, nao pode ativar o modo passivo!", thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"emEvento",true) then outputChatBox ( "#000000[#FF0000 Erro #000000]#FFFFFF Voce esta em um evento!", thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"emArena",true) then outputChatBox ( "#000000[#FF0000 Erro #000000]#FFFFFF Voce esta em uma arena!", thePlayer, 255, 255, 255, true ) return end if getElementData(thePlayer,"ModoPassivo") == true then outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] • Desativando Modo Passivo em 15 Segundos', thePlayer, 255, 255, 255, true ) setTimer ( DesativarPassivo, 10000, 1, thePlayer) setElementData ( thePlayer, "Desativando>ModoPassivo", true ) else outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] • Ativando Modo Passivo em 10 Segundos', thePlayer, 255, 255, 255, true ) setTimer ( AtivarPassivo, 10000, 1, thePlayer) setElementData ( thePlayer, "Ativando>ModoPassivo", true ) end break end end end addCommandHandler ( cmd, toggleGodMode ) ------------------------------DesativarModoPassivo------------------------------ function DesativarPassivo (thePlayer) setElementData ( thePlayer, "Desativando>ModoPassivo", false ) setElementData(thePlayer,"ModoPassivo",false) toggleControl (thePlayer, "fire", true) toggleControl (thePlayer, "next_weapon", true) toggleControl (thePlayer, "previous_weapon", true) toggleControl (thePlayer, "aim_weapon", true) toggleControl (thePlayer, "vehicle_fire", true) setVehicleDamageProof(thePlayer,false) setElementAlpha(thePlayer, 255) outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] Modo Passivo #FF0000( Desativado )', thePlayer, 255, 255, 255, true ) -- outputChatBox ( "• O Jogador "..getPlayerName(thePlayer).." #ffffffDesativou o Modo Passivo", root, 255, 255, 255, true ) -- Msg Para Todos setElementData ( thePlayer, "Desativado>Start5Minutos", true ) setTimer ( setElementData, 300000, 1, thePlayer, "Desativado>Start5Minutos", false ) end ------------------------------AtivarModoPassivo------------------------------ function AtivarPassivo (thePlayer) setElementData ( thePlayer, "Ativando>ModoPassivo", false ) setElementData(thePlayer,"ModoPassivo", true) toggleControl (thePlayer, "fire", false) toggleControl (thePlayer, "next_weapon", false) toggleControl (thePlayer, "previous_weapon", false) toggleControl (thePlayer, "aim_weapon", false) toggleControl (thePlayer, "vehicle_fire", false) setPedWeaponSlot (thePlayer, 0 ) setVehicleDamageProof(thePlayer, true) setElementAlpha(thePlayer, 145) outputMessage ( '#FFFFFF [#FFFF00INFO#FFFFFF] Modo Passivo #00FF00( Ativado )', thePlayer, 255, 255, 255, true ) -- outputChatBox ( "• O Jogador "..getPlayerName(thePlayer).." #ffffffAtivou o Modo Passivo", root, 255, 255, 255, true ) -- Msg Para Todos setElementData ( thePlayer, "Ativado>Start15Segundos", true ) setTimer ( setElementData, 15000, 1, thePlayer, "Ativado>Start15Segundos", false ) end ------------------------------.------------------------------ function VerificarModo (player) if getElementData ( player,"ModoPassivo" ) == true then toggleControl ( player, "fire", false) toggleControl ( player, "next_weapon", false) toggleControl ( player, "previous_weapon", false) toggleControl ( player, "aim_weapon", false) toggleControl ( player, "vehicle_fire", false) setPedWeaponSlot ( player, 0 ) else if not getElementData (player, "EmAreaVerde") == true then toggleControl ( player, "fire", true ) toggleControl ( player, "next_weapon", true ) toggleControl ( player, "previous_weapon", true ) toggleControl ( player, "aim_weapon", true ) toggleControl ( player, "vehicle_fire", true ) end end end ------------------------------Timer------------------------------ setTimer( function() for i, player in pairs(getElementsByType("player")) do if player ~= (false or nil) then VerificarModo(player) end end end, 1000,0) ------------------------------OutroMod------------------------------ function outputMessage (text, player, r, g, b) return exports["Mod-MPLIB"]:outputMessage(player, text, r, g, b); end setElementData ( localPlayer, "Timer:Passivo", false ) setElementData ( localPlayer, "ModoPassivo", false ) setElementData ( localPlayer, "Ativando>ModoPassivo", false ) setElementData ( localPlayer, "Desativando>ModoPassivo", false ) setElementData ( localPlayer, "Desativado>Start5Minutos", false ) setElementData ( localPlayer, "Ativado>Start15Segundos", false ) -------------------------------------------------------------------------------------------------------- addEventHandler ( "onClientPlayerDamage",root, function () if getElementData(source,"ModoPassivo") then cancelEvent() end end ) -------------------------------------------------------------------------------------------------------- addEventHandler("onClientPlayerStealthKill",localPlayer, function (targetPlayer) if getElementData(targetPlayer,"ModoPassivo") then cancelEvent() end end ) -------------------------------------------------------------------------------------------------------- addEventHandler ( "onClientPlayerDamage",root, function () if getElementData(source,"ModoPassivo") then cancelEvent() end end ) -------------------------------------------------------------------------------------------------------- addEventHandler("onClientPlayerStealthKill",localPlayer, function (targetPlayer) if getElementData(targetPlayer,"ModoPassivo") then cancelEvent() end end ) -------------------------------------------------------------------------------------------------------- addEventHandler( 'onClientRender', root, function( ) for _, player in ipairs( getElementsByType( 'player') ) do if isElementOnScreen( player ) and getElementData( player, 'ModoPassivo' ) then local cx, cy, cz, x, y, z, dist local x, y, z = getElementPosition( player ); local cx, cy, cz = getCameraMatrix( ); dist = math.sqrt( ( cx - x ) ^ 2 + ( cy - y ) ^ 2 + ( cz - z ) ^ 2 ) if dist < 32.0 then if isLineOfSightClear( cx, cy, cz, x, y, z, true, false, false, true, false, false, false,localPlayer ) then local sx, sy, sz = getPedBonePosition( player, 2 ) local x,y = getScreenFromWorldPosition( sx, sy, sz + 0.15 ) if x then dxDrawText("Modo Passivo", x, y, 30, 30, tocolor(255, 255, 255, 200), 1, "default-bold", "left", "top") end end end end end end );
  7. Olhando no script percebi que quando alguem estava na gang, ficava com o ElementData "gangue", ai usei if getElementData(source,"gangue") then e deu certo. sobre o "not" então caso eu deixa-se if not getElementData(source,"gangue") then, seria se o jogador não estiver com o ElementData "gangue" entao?
  8. quando o jogador entrar em uma gang deixar setAccountData ( account, 'MembroDeGang', true) ao sair da gang setAccountData ( account, 'MembroDeGang', false) ai quando alguem tentar entrar na policia if getAccountData( account, 'MembroDeGang' == true then outputChatBox("#000000[#0000FF Policia Militar #000000]#FFFFFF Você faz parte de uma gang ou de outra corp!", source, 255,0,0,true) ta certo?
  9. Tenho um script de policia publica aqui, entra no marker, aceita e vira policial. mas estou tentando configurar para gangs nao poderem entrar na policia, tentei usar if not getPlayerTeam(source) == nil then mais não deu certo. ----------Entrar na policia---------- function vdbtrabalhar() if isGuestAccount ( getPlayerAccount(source) ) then outputChatBox ("#000000[#00FF00 ERRO #000000]#FFFFFF Você precisar estar logado para trabalhar na policia!",source,255,0,0,true) else acc = getAccountName(getPlayerAccount(source)) if isObjectInACLGroup ("user."..acc, aclGetGroup("Policia")) then aclGroupRemoveObject (aclGetGroup("Policia"), "user."..getAccountName(getPlayerAccount(source))) outputChatBox ("#000000[#0000FF Policia Militar #000000]#FFFFFF Você saiu da PM",source,255,0,0,true) setElementData(source,"isPolice",false) setPlayerTeam (source, nil) triggerClientEvent (source, "vdbpoliciatrabalharfecharpainel", root) else if not getPlayerTeam(source) == nil then outputChatBox("#000000[#0000FF Policia Militar #000000]#FFFFFF Você faz parte de uma gang ou de outra corp!", source, 255,0,0,true) else if getPlayerWantedLevel(source) <= 0 then triggerClientEvent (source, "vdbpoliciatrabalharfecharpainel", root) aclGroupAddObject (aclGetGroup("Policia"), "user."..getAccountName(getPlayerAccount(source))) setElementData(source,"isPolice",true) outputChatBox("#000000[#0000FF Policia Militar #000000]#FFFFFF Parabéns você agora é Policial, e pode prender jogadores", source, 255,0,0,true) outputChatBox("#000000[#0000FF Policia Militar #000000]#FFFFFF Assim que você se desconectar do servidor sera removido e tera que entrar novamente", source, 255,0,0,true) outputChatBox("#000000[#0000FF Policia Militar #000000]#FFFFFF Aperte a tecla #FF0000I#00FF00 #FFFFFFpara abrir o painel da policia", source, 255,0,0,true) outputChatBox("#000000[#0000FF Policia Militar #000000]#FFFFFF Digite /cmdpm para ver todos os comandos a tecla #FF0000I#00FF00 #FFFFFFpara abrir o painel da policia", source, 255,0,0,true) else outputChatBox("#000000[#0000FF Policia Militar #000000]#FFFFFF Você esta com nivel de procurado e não pode entrar para Policia", source, 255,0,0,true) end end end end end addEvent ("vdbclicktrabalha", true) addEventHandler ("vdbclicktrabalha", getRootElement(), vdbtrabalhar)
  10. Deu tudo certo, na parte do level de procurado, deixei assim pra não dar erro no debug, vlw ai if getPlayerWantedLevel(Player) < 6 then setPlayerWantedLevel(Player,getPlayerWantedLevel(Player)+1) end
  11. Deu certo aqui e pra adicionar vida seria assim? setElementHealth(player, getElementHealth(player) + 20)
  12. Eu estava procurando aqui e não achei nenhuma função para adicionar mais um level de procurado a um jogador, achei apenas a função setPlayerWantedLevel, mais não eh isso q eu quero, pois ela não adiciona um level a mais, ela seta a quantia, oque quero fazer eh adicionar apenas 1 level de procurado ao roubar, e ao roubar novamente, adicionar mais um level, assim juntando 2.
  13. setPlayerTeam eh apenas para setar o team certo? e o getPlayerTeam e para fazer algo assim? local playerTeam = getTeamName(getPlayerTeam(PlayerID))
  14. • Grand Freeroam Brasil • • Ip: 149.56.41.48:22033 • • Discord : https://discord.gg/wMkcasT • • Gangs Gratis • • Policia • • Handling • • Eventos Diarios • • Carros BR • • Arenas Hs e Cbug •
  15. Bom, todas proteções de bases e portões que achei funcionavam por acl, mais tem como fazer a proteção da base e o portão funcionarem apenas para algum team especifico?
  16. Eu estava arrumando no servidor local, um mod para policias poderem colocar cones e barreiras para fazerem blitz e para deletar os cones ou barreiras teria que digitar /apagar (ai aparece a seta na tela) dai seleciona o objeto que quer apagar e pronto. O mod funciona normalmente, mais caso digitar /apagar e clicar em outro lugar da tela que não seja algum objeto criado pelo mod, aparece isso no debugscript: mod-blitz/blitz.lua:20: Bad argument @ 'getElementType' [Expected element at argument 1, got nil]. Eu não liguei muito a principio, pois acontecia apenas quando clicava em um lugar errado na hora de apagar um objeto, mais ai quando coloquei o mod na host e fui testar no servidor, começou a dar esse mesmo warning SEM PARAR, ai desativei o mod e coloquei novamente no servidor local pra tentar arrumar, mas quando o mod ta no servidor local, ele so da esse warning quando clica errado no /apagar, e ja na host da toda hora sem parar, alguém pode me ajudar a resolver isso ai? ``----------------------------------------Ativar modo blitz---------------------------------------- function modoBlitz(source) if (getElementData(source, "Modo:Blitz")) == false then setElementData(source, "Modo:Blitz", true) outputChatBox(" ", source) outputChatBox("#00ff00[SUCESSO] #FFFFFFVocê entrou no modo blitz, use /objetos para ver todos os objetos disponiveis.", source, 255,255,255, true) outputChatBox(" ", source) else setElementData(source, "Modo:Blitz", false) outputChatBox(" ", source) outputChatBox("#00ff00[SUCESSO] #FFFFFFVocê saiu do modo blitz.", source, 255,255,255, true) outputChatBox(" ", source) end end addCommandHandler("blitz", modoBlitz) ----------------------------------------Apagar objetos---------------------------------------- function quandoClicar(mouseButton, buttonState, clickedElement, worldPosX, worldPosY, worldPosZ, screenPosX, screenPosY) if (mouseButton == "left") and (buttonState == "down") and (getElementType(clickedElement) == "object") and (getElementType(source) == "player") and (getElementModel(clickedElement) == 1237 or 3091 or 1228 or 1427) then if (getElementData(source, "Modo:Blitz")) == true then if (getDistanceBetweenElements(source, clickedElement) < 100) then if (getDistanceBetweenElements(source, clickedElement) > 80) then outputChatBox(" ", source) outputChatBox("#ff0000[ERRO] #FFFFFFVocê está muito longe do objeto selecionado!", source, 255,255,255, true) outputChatBox(" ", source) else local conta = getPlayerAccount(source) saberDono = getElementData(clickedElement, "Blitz:DonoDoCone") if (saberDono == conta) then destroyElement(clickedElement) end end end else outputChatBox(" ", source) outputChatBox("#ff0000[ERRO] #FFFFFFPara colocar objetos, você precisa estar com o modo blitz ativo, use #00FF00/blitz.", source, 255,255,255, true) outputChatBox(" ", source) end end end addEventHandler("onPlayerClick", getRootElement(), quandoClicar) function getDistanceBetweenElements(arg1, arg2) local element1 = Vector3(getElementPosition( arg1 )) local element2 = Vector3(getElementPosition( arg2 )) local distance = getDistanceBetweenPoints3D( element1,element2 ) return distance end --Objetos: ----------------------------------------Cone---------------------------------------- function criarBlitz(source) if (getElementData(source, "Modo:Blitz")) == true then if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("EBCMD")) or isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("BOPECMD")) then local x,y,z = getElementPosition(source) cone = createObject(1237, x, y, z-1) setElementPosition(source, x+1,y,z) local conta = getPlayerAccount(source) setElementData(cone, "Blitz:DonoDoCone", conta) outputChatBox(" ", source) outputChatBox("#00ff00[SUCESSO] #FFFFFFCone criado com sucesso! Para exclui-lo digite /apagar e clique em cima do objeto.", source, 255,255,255, true) outputChatBox(" ", source) else outputChatBox(" ", source) outputChatBox("#ff0000[ERRO] #FFFFFFVocê não é um policial para executar este comando.", source, 255,255,255, true) outputChatBox(" ", source) end else outputChatBox(" ", source) outputChatBox("#ff0000[ERRO] #FFFFFFPara colocar objetos da blitz, você precisa estar com o modo blitz ativo, use #00FF00/blitz.", source, 255,255,255, true) outputChatBox(" ", source) end end addCommandHandler("cone", criarBlitz) ----------------------------------------Barreira1---------------------------------------- function criarBarreira(source) if (getElementData(source, "Modo:Blitz")) == true then if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("EBCMD")) or isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("BOPECMD")) then local x,y,z = getElementPosition(source) barreira = createObject(3091, x, y, z-1) setElementPosition(source, x+1,y,z) local conta = getPlayerAccount(source) setElementData(barreira, "Blitz:DonoDoCone", conta) outputChatBox(" ", source) outputChatBox("#00ff00[SUCESSO]#FFFFFF Barreira criada com sucesso! Para exclui-lo digite /apagar e clique em cima do objeto.", source, 255,255,255, true) outputChatBox(" ", source) else outputChatBox(" ", source) outputChatBox("#ff0000[ERRO]#FFFFFF Comando disponivel apenas para policiais! ", source, 255,255,255, true) outputChatBox(" ", source) end else outputChatBox(" ", source) outputChatBox("#FFD700[AVISO]#FFFFFF Você precisa estar no modo blitz para colocar objetos, use /blitz.", source, 255,255,255, true) outputChatBox(" ", source) end end addCommandHandler("barreira", criarBarreira) ----------------------------------------Barreira2---------------------------------------- function criarBarreira2(source) if (getElementData(source, "Modo:Blitz")) == true then if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("EBCMD")) or isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("BOPECMD")) then local x,y,z = getElementPosition(source) barreira2 = createObject(1228, x, y, z-1) setElementPosition(source, x+1,y,z) local conta = getPlayerAccount(source) setElementData(barreira2, "Blitz:DonoDoCone", conta) outputChatBox(" ", source) outputChatBox("#00ff00[SUCESSO]#FFFFFF Barreira2 criada com sucesso! Para exclui-lo digite /apagar e clique em cima do objeto.", source, 255,255,255, true) outputChatBox(" ", source) else outputChatBox(" ", source) outputChatBox("#ff0000[ERRO]#FFFFFF Comando disponivel apenas para policiais! ", source, 255,255,255, true) outputChatBox(" ", source) end else outputChatBox(" ", source) outputChatBox("#FFD700[AVISO]#FFFFFF Você precisa estar no modo blitz para colocar objetos, use /blitz.", source, 255,255,255, true) outputChatBox(" ", source) end end addCommandHandler("barreira2", criarBarreira2) ----------------------------------------Barreira3---------------------------------------- function criarBarreira3(source) if (getElementData(source, "Modo:Blitz")) == true then if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("EBCMD")) or isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("BOPECMD")) then local x,y,z = getElementPosition(source) barreira3 = createObject(1427, x, y, z-1) setElementPosition(source, x+1,y,z) local conta = getPlayerAccount(source) setElementData(barreira3, "Blitz:DonoDoCone", conta) outputChatBox(" ", source) outputChatBox("#00ff00[SUCESSO]#FFFFFF Barreira3 criada com sucesso! Para exclui-lo digite /apagar e clique em cima do objeto.", source, 255,255,255, true) outputChatBox(" ", source) else outputChatBox(" ", source) outputChatBox("#ff0000[ERRO]#FFFFFF Comando disponivel apenas para policiais! ", source, 255,255,255, true) outputChatBox(" ", source) end else outputChatBox(" ", source) outputChatBox("#FFD700[AVISO]#FFFFFF Você precisa estar no modo blitz para colocar objetos, use /blitz.", source, 255,255,255, true) outputChatBox(" ", source) end end addCommandHandler("barreira3", criarBarreira3) ``
  17. Eu reinstalei a host e passei os mods novamente e o painel de ranks voltou ao normal, obrigado pela ajuda, vou tentar arrumar esses 3 erros também
  18. Esta dando estes 3 erros, os dois primeiros acontecem quando inicia o mod e o terceiro quando morre, mais como falei, esses 3 erros sempre aconteceram e funcionava normalmente ERROR: Painel/pj_s.lua:267: Database query failed: table tableRank has no column named drift ERROR: Painel/pj_s.lua:272: attempt to call global 'onRecallTeam' (a nil value) ERROR: Painel/utils_s.lua:142: attempt to compare numer with string
  19. Mandar uma print dos erros do debug? E sim o mod funcionava realmente parece que parou de funcionar de uma hora pra outra, pra ter certeza baixei o mod denovo, e sem mecher em nada nele, coloquei no servidor local, e não funcionou. E este mod funcionava antes pois eu tinha um servidor online com este mod nele funcionando
  20. Eu coloquei o mod em um servidor local, sem nenhum outro mod além dele e dos padrões que vem com o server default e não funcionou, então n eh conflito com outro mod. Na parte do debugscript 3, sim tem alguns erros, mais os erros que estão dando lá, já aconteciam antes também, no tempo que o painel estava funcionando
  21. Eu tenho um painel de ranks aqui, ele já salvava normalmente os ranks, contava as kill e death no TAB (scoreboard) e adicionava uma barra de level que upava quando matava certa quantia de jogadores. O mod funcionava perfeitamente e agora começou a dar problemas, n aparece mais nada nos ranks, kill e death não esta contando mais no TAB, n ganha mais exp pra subir de level. Pensei que eu poderia ter mexido em alguma coisa no mod e bugado tudo, mais não, pois coloquei uma versão mais antiga do mod que funcionava normalmente e o mod continuou bugado.
  22. Bom, eu estou querendo deixar o cbug e seus "extras " ativo em apenas 4 arenas, tentei um pouco aqui, mais não faço ideia de como fazer isso e estou pedindo ajuda aqui. Também caso algum scripter querer fazer pra mim, me adicione no discord: Maaster#0414 e vemos um preço
  23. Existe algum tipo de comando ou resource para ver quais binds um jogador esta usando? ex: /checkbind Player1, e mostra no chat todas as binds que o jogador esta usando
  24. Eu tava querendo colocar pra aparecer no TAB (scoreboard) uma parte de "drift" e ficar salvo e acumulando o drift feito pelos jogadores la, mais não encontrei nenhum mod do tipo e não sou muito bom em editar scripts pra fazer algo assim.
  25. For most people, the cinema works normally, more than one or two as soon as a video is placed in the cinema, the MTA is turned off at the same time. and some others are complaining that there is no video to put
×
×
  • Create New...