Jubs_noob Posted November 26, 2021 Share Posted November 26, 2021 queria fazer o player clicar no ped e vender a droga mas não to conseguindo function venderdroga(thePlayer) local crack = getNearestPed(thePlayer) local drogado = getElementData(crack, "drogado") if crack then if drogado == false then if getElementData(thePlayer, "cocaina") >= 1 then setElementData(thePlayer, "cocaina",(getElementData(thePlayer, "cocaina")) - 1) local valor = math.random(1000, 4000) givePlayerMoney(thePlayer, valor) setElementData(crack, "drogado", true) setPedAnimation(thePlayer, "DEALER","DEALER_DEAL") setPedAnimation(crack, "DEALER","DEALER_DEAL") setTimer ( function() setPedAnimation(thePlayer, nil) setPedAnimation(crack, nil) end, 2500, 1 ) setTimer ( function() setElementData(crack, "drogado", false) end, 0* minutosdrogado, 0 ) else outputChatBox("["..Cidade.."] #FFFFFFVocê não tem Coca", thePlayer,148,0,211,true) end else triggerClientEvent("noti", thePlayer) end else outputChatBox("["..Cidade.."] #FFFFFFNão Tenho nenhum Noia perto de você", thePlayer,148,0,211,true) end end addEvent("venderdroga", true ) addCommandHandler ( "venderdroga", venderdroga ) Link to comment
Other Languages Moderators Lord Henry Posted November 26, 2021 Other Languages Moderators Share Posted November 26, 2021 Não utilize o comando para ativar a função igual o nome do evento. E o esquema de clicar não está no código que vc mostrou. Link to comment
Jubs_noob Posted November 27, 2021 Author Share Posted November 27, 2021 21 hours ago, Lord Henry said: Não utilize o comando para ativar a função igual o nome do evento. E o esquema de clicar não está no código que vc mostrou. mas eu coloquei com o addEventHandler ( "onClientClick", root e n foi n funciona Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now