Jump to content

Kii

Members
  • Posts

    4
  • Joined

  • Last visited

Kii's Achievements

Vic

Vic (3/54)

0

Reputation

  1. Então senhores, creio que consegui chegar em algo... Mas ainda a um problema, quando eu utilizo o comando o veiculo vem até mim e "cola", mas caso eu me locomova para um outro local com o veiculo "colado", e tentar solta-lo depois, ele simplesmente não solta. Se os senhores poderem me ajudar... gpStaff = "Staff" function testePa (thePlayer) if isObjectInACLGroup ( "user." ..getAccountName(getPlayerAccount(thePlayer)), aclGetGroup (gpStaff)) then local x, y, z = getElementPosition (thePlayer) local pcM = createMarker(x, y, z, "cylinder",20,255,255,0,25) attachElements(pcM, thePlayer, 0, 0, -1) setTimer ( function() destroyElement(pcM) end, 2000, 1 ) local nearbyVehicles = getElementsWithinRange(x, y, z, 10, "vehicle") for i,v in ipairs(nearbyVehicles) do if v and isElement(v) then if getElementData(thePlayer, "vehMarkerHited") == false then setElementData(thePlayer, "vehMarkerHited", true) outputChatBox("pegou") attachElements(v, thePlayer) setVehicleDamageProof(v, true) else setElementData(thePlayer, "vehMarkerHited", false) outputChatBox("soltou") detachElements(v, thePlayer) setVehicleDamageProof(v, false) end end end end end addCommandHandler("t",testePa)
  2. Bom, acho que não ficou muito claro o que eu disse, peço desculpas então tentarei explicar o "contexto", estou tentando criar algo para puxar um veiculo (com o attachElement) em uma certa distancia (entre 25 metros), mas não entendo muito então não sei muito bem como fazer... Se pudesse me dar uma ideia de como prosseguir para puxar o veiculo seria grato!
  3. Mas não consigo, algo da errado no 'isElementInRange', alguém poderia me ajudar? addCommandHandler("car", function(thePlayer,veh) local x, y, z = getElementPosition (thePlayer) local veh = getElementsByType('vehicle') if isElementInRange(veh, x, y, z, 25) then outputChatBox("teste",thePlayer,255,255,255,true) end end end ) Print do erro: https://prnt.sc/12bhy03
×
×
  • Create New...