eldelahoz Posted July 1, 2013 Share Posted July 1, 2013 Hola lo que pasa es que estoy usando un digital-hud pero como puedo hacer para quitar la mano y la sangre y todo eso? Link to comment
mcer Posted July 2, 2013 Share Posted July 2, 2013 Asi: function hudHide() showPlayerHudComponent ( source, "all", false ) end addEventHandler ( "onPlayerJoin", getRootElement(), hudHide ) Link to comment
BorderLine Posted July 2, 2013 Share Posted July 2, 2013 no te recomiendo que uses "all" ya que te quitara el crosshair y eso no te permitira ver la mira al disparar, nisiquiera de la Sniper. Recomiendo que elijas las funciones a quitar y que lo detalles linea por linea. o bien crea una tabla con todas y la aplicas al showPlayerHud. Link to comment
mcer Posted July 2, 2013 Share Posted July 2, 2013 Y usa esto tambien: function ShowCross() showPlayerHudComponent ( source, "crosshair", true ) end addEventHandler ( "onClientRender", getRootElement(), ShowCross ) Link to comment
JuanM27 Posted July 3, 2013 Share Posted July 3, 2013 Y usa esto tambien: function ShowCross() showPlayerHudComponent ( source, "crosshair", true ) end addEventHandler ( "onClientRender", getRootElement(), ShowCross ) hola hay tienes algo mal, onClientRender es Client y source no tendria que ir, en todo caso seria asi. function ShowCross() showPlayerHudComponent ( "crosshair", true ) end addEventHandler ( "onClientRender", getRootElement(), ShowCross ) Link to comment
Recommended Posts