felipebaidoloko 4 Posted February 16 Share Posted February 16 (edited) Boa noite, Estou fazendo um sistema de bot que atira na direção do player, esta funcionando tudo certo. Mais ele esta atirando muito para cima, na mesma direção mas, só que para cima, vou enviar uma print mostrando. Qual função posso usar para abaixar o tiro do ped https://ibb.co/s3BMdDX Edited February 16 by felipebaidoloko Link to post
Other Languages Moderators Lord Henry 1,377 Posted February 16 Other Languages Moderators Share Posted February 16 setPedAimTarget 1 Link to post
felipebaidoloko 4 Posted February 16 Author Share Posted February 16 esta dando esse erro attempt to call global 'setPedAimTarget' (a nil value) addEvent( "botsStartAttack", true ) addEventHandler( "botsStartAttack", getRootElement(), function (zomb,numberBot) if isElement ( zomb ) and not getElementData ( zomb, "target" ) then if getElementData ( zomb, "zHeared" ) then setElementData ( zomb, "zHeared", false ) end setElementSyncer ( zomb, source ) setPedAnimation ( zomb ) if not isHLCEnabled ( zomb ) then enableHLCForNPC( zomb, getElementData ( zomb,"speed") or "sprint") end clearNPCTasks (zomb) addNPCTask ( zomb, {"killPed", source, 6, 6} ) setElementData ( zomb, "target", source ) local x,y,z = getElementPosition(zomb) setPedAimTarget ( zomb, x,y,z ) setElementAlpha ( zomb, 255 ) end end) Link to post
LucasST 13 Posted February 16 Share Posted February 16 Essa função é utilizada no Client-Side. 1 Link to post
felipebaidoloko 4 Posted February 16 Author Share Posted February 16 agora deu certo, obrigado pela ajuda Link to post
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