Jump to content

Como se hace este script?


Flipi

Recommended Posts

Hola, quisiera saber como hacer un script que con la función bindKey pueda bindear una letra y reparar un vehiculo, donde tenga un OutputChatBox que indique cuando repare el vehiculo, tambien cuando no esta en el vehiculo un OutputChatBox indique que necesita un vehiculo para reparar.. Ojala me ayuden porfa D:!! [soy novato u.u] :|

Link to comment

try

function Reparar(thePlayer) 
 local Veiculo = getPedOccupiedVehicle(thePlayer) 
  if Veiculo then 
   outputChatBox("lol Reparado",thePlayer) 
    fixVehicle(Veiculo) 
   else 
   outputChatBox("no tienes car",thePlayer) 
   end 
    end 
  
function BindSpawn() 
bindKey(source,"k","down",Reparar) 
-- k bind 
end 
addEventHandler("onPlayerSpawn",getRootElement(),BindSpawn) 

Link to comment
try
function Reparar(thePlayer) 
 local Veiculo = getPedOccupiedVehicle(thePlayer) 
  if Veiculo then 
   outputChatBox("lol Reparado",thePlayer) 
    fixVehicle(Veiculo) 
   else 
   outputChatBox("no tienes car",thePlayer) 
   end 
    end 
  
function BindSpawn() 
bindKey(source,"k","down",Reparar) 
-- k bind 
end 
addEventHandler("onPlayerSpawn",getRootElement(),BindSpawn) 

Sirvió Gracias :D!, una consulta, como puedo hacer para agregarle un sonido de repair al momento de reparar el vehiculo?

Link to comment
function Reparar(thePlayer) 
   local Veiculo = getPedOccupiedVehicle(thePlayer) 
    if Veiculo then 
     outputChatBox("Vehículo reparado.",thePlayer) 
     fixVehicle(Veiculo) 
     playSoundFrontEnd ( thePlayer, 46 ) 
     else 
     outputChatBox("No tienes un vehículo.",thePlayer) 
     end 
end 
  
addEventHandler("onPlayerJoin",root,function() 
     bindKey(source,"k", "down", Reparar) 
end) 
  
function onStart() 
  for id, players in ipairs(getElementsByType("player")) do 
    bindKey(players ,"k", "down", Reparar) 
  end 
end 

Link to comment
function Reparar(thePlayer) 
   local Veiculo = getPedOccupiedVehicle(thePlayer) 
    if Veiculo then 
     outputChatBox("Vehículo reparado.",thePlayer) 
     fixVehicle(Veiculo) 
     playSoundFrontEnd ( thePlayer, 46 ) 
     else 
     outputChatBox("No tienes un vehículo.",thePlayer) 
     end 
end 
  
addEventHandler("onPlayerJoin",root,function() 
     bindKey(source,"k", "down", Reparar) 
end) 
  
function onStart() 
  for id, players in ipairs(getElementsByType("player")) do 
    bindKey(players ,"k", "down", Reparar) 
  end 
end 

WOW!! gracias :D! quedo perfecto!

Link to comment
  • 3 weeks later...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...