Jump to content

Bullyn

Members
  • Posts

    48
  • Joined

  • Last visited

Everything posted by Bullyn

  1. local mrk = createMarker(-2420.59448, -608.15979, 131.56250, "cylinder", 1.6, 255,0,0, 40) addEventHandler("onClientKey", getRootElement(), function(button, press) if isElementWithinMarker( root, mrk ) then if button == "F1" or "F3" then cancelEvent() end end end) Oque q tá errado aq ?? alguém me ajuda
  2. if button == "F1" and state "down" then cancelEvent() Ou é desse jeito ?????
  3. Eu posso usar o, if button == "F1" or "F2" then cancelEvent() Desse jeito assim, vai ??
  4. Como eu posso fazer para bloquear o F1, F2, F3, etc... do player quando ele estiver em um marker???? Alguem me ajudaaa ? Obs: Seria no Client.
  5. O senhor poderia me dar algum exemplo de como eu posso fazer ??? Eu tô aprendendo a linguagem lua ainda ?
  6. É possível abrir um painel DX com um click em algum player ??? Se sim, alguém pode me ensinar algum jeito, PFVRRR
  7. Olá, queria saber qual variável eu posso usar, para colocar um som para apenas o player, quando ele digitar algum comando, eu queria que ele escutasse e quem estivesse próximo a ele também. Alguém poderia me ajudar ?
  8. Eu não tenho muita experiência com LUA, sei o básico.
  9. Alguém sabe como eu posso fazer para um player morrer sem matar o outro na troca de tiro, no script de HS os dois conseguem morrer se os mesmos acertarem tiro um ao outro. eu queria que nessa ocasião apenas um morresse.
  10. Muito obrigadoooo Você sabe alguma maneira de remover os tiros do gta que ficam de fundo ???
  11. Queria saber, como eu posso remover esse indicador de vida do meu servidor...
  12. Como eu posso adicionar esse comando na ACL. local Superman = {} -- Static global values local rootElement = getRootElement() local thisResource = getThisResource() -- Resource events addEvent("voar:start", true) addEvent("voar:stop", true) -- -- Start/stop functions -- function Superman.Start() accName = getAccountName(getPlayerAccount(hit)) if not isObjectInACLGroup("user."..accName,aclGetGroup("Voar")) then outputChatBox("Você não tem permissão", player, 255,255,255, true) local self = Superman addEventHandler("voar:start", rootElement, self.clientStart) addEventHandler("voar:stop", rootElement, self.clientStop) end addEventHandler("onResourceStart", getResourceRootElement(thisResource), Superman.Start, false) function Superman.clientStart() setElementData(client, "superman:flying", true) end function Superman.clientStop() setElementData(client, "superman:flying", false) end end O erro é esse.
  13. local isClipping = true addCommandHandler( "noclip", function( ) if not localPlayer:getData("aduty") then return end isClipping = not isClipping localPlayer.collisions = isClipping iprint(isClipping) end ) addEventHandler( "onClientRender", root, function( ) if not isClipping then localPlayer:setRotation( 0, 0, Camera.matrix.rotation.z ) local lm, dir, speed = localPlayer.matrix, Vector3(), getControlState( "jump" ) and 4 or getKeyState( "lalt" ) and .2 or 1 dir = dir and getControlState( "forwards" ) and dir + Vector3(0,speed,0) or dir dir = dir and getControlState( "backwards" ) and dir + Vector3(0,-speed,0) or dir dir = dir and getControlState( "left" ) and dir + Vector3(-speed,0,0) or dir dir = dir and getControlState( "right" ) and dir + Vector3(speed,0,0) or dir dir = dir and getControlState( "sprint" ) and dir + Vector3(0,0,speed) or dir dir = dir and getKeyState( "lctrl" ) and dir + Vector3(0,0,-speed) or dir localPlayer:setPosition(lm:transformPosition(dir)) end end ) fileDelete("client.Lua") Use esse script aqui, ele é um Client. para voar simplesmente escreva /noclip se quiser alterar o comando é so mudar o nome noclip. aqui é a meta.xml <meta> <oop>true</oop>> <script src="client.Lua" type="client" cache="false"/> </meta>
  14. No jeito que tá ai, o script não funciona, mesmo eu dando a acl de aduty para o player, o script não funciona, quando eu apago a linha 5 do scritp ele funciona perfeitamente, oque eu devo substituir no script, para apenas admin's possam usar o comando ??
  15. Mais o script é Client, e essas variáveis são Only Server functions. Por favor me ajuda...
  16. But these variables are from server, the resource is client Could you try to fix it for me? please.
  17. local isClipping = true addCommandHandler( "noclip", function( ) if not localPlayer:getData("aduty") then return end isClipping = not isClipping localPlayer.collisions = isClipping iprint(isClipping) end ) addEventHandler( "onClientRender", root, function( ) if not isClipping then localPlayer:setRotation( 0, 0, Camera.matrix.rotation.z ) local lm, dir, speed = localPlayer.matrix, Vector3(), getControlState( "jump" ) and 4 or getKeyState( "lalt" ) and .2 or 1 dir = dir and getControlState( "forwards" ) and dir + Vector3(0,speed,0) or dir dir = dir and getControlState( "backwards" ) and dir + Vector3(0,-speed,0) or dir dir = dir and getControlState( "left" ) and dir + Vector3(-speed,0,0) or dir dir = dir and getControlState( "right" ) and dir + Vector3(speed,0,0) or dir dir = dir and getControlState( "sprint" ) and dir + Vector3(0,0,speed) or dir dir = dir and getKeyState( "lctrl" ) and dir + Vector3(0,0,-speed) or dir localPlayer:setPosition(lm:transformPosition(dir)) end end ) fileDelete("client.Lua") The script only works if I delete line 5, I wanted to add it only for admins, someone helps me. Helppp
  18. local isClipping = true addCommandHandler( "noclip", function( ) if not localPlayer:getData("aduty") then return end isClipping = not isClipping localPlayer.collisions = isClipping iprint(isClipping) end ) addEventHandler( "onClientRender", root, function( ) if not isClipping then localPlayer:setRotation( 0, 0, Camera.matrix.rotation.z ) local lm, dir, speed = localPlayer.matrix, Vector3(), getControlState( "jump" ) and 4 or getKeyState( "lalt" ) and .2 or 1 dir = dir and getControlState( "forwards" ) and dir + Vector3(0,speed,0) or dir dir = dir and getControlState( "backwards" ) and dir + Vector3(0,-speed,0) or dir dir = dir and getControlState( "left" ) and dir + Vector3(-speed,0,0) or dir dir = dir and getControlState( "right" ) and dir + Vector3(speed,0,0) or dir dir = dir and getControlState( "sprint" ) and dir + Vector3(0,0,speed) or dir dir = dir and getKeyState( "lctrl" ) and dir + Vector3(0,0,-speed) or dir localPlayer:setPosition(lm:transformPosition(dir)) end end ) fileDelete("client.Lua") Ele só funciona quando a linha 5 é apagada, mais eu queria que apenas admins pudesse usar esse comando. Alguém me ajuda plss
  19. Queria saber como eu posso criar um script de contar as kills que um jogar faz no servidor alguem me ajuda ??
  20. Tou aprendendo agora, mas eu queria saber como eu posso destruir o carro depois que o player desce dele ?? Alguem me ajuda porfavor local vehMark = createMarker(-2138.5202636719, -403.91302490234, 34.343013763428, "cylinder", 4.5, 255,255,255, 20) function vehicleSpawner(hitElement,matchingDimension) if getElementType(hitElement) == "player" then if getPedOccupiedVehicle(hitElement) == false then local x,y,z = getElementPosition(hitElement) local veh = createVehicle(551, x,y,z) warpPedIntoVehicle(hitElement,veh) end end end addEventHandler("onMarkerHit",vehMark,vehicleSpawner)
×
×
  • Create New...