Narutimmy Posted February 16, 2013 Share Posted February 16, 2013 Hola lo que pasa es que aye este scrip en el forum que era justo lo que buscaba pero quiero que se muestre en pantalla el nivel de stamina tienes. Osea Abajo del nivel de vida y esas cosas. stamina = 30 addEventHandler ( "onClientPlayerSpawn", getLocalPlayer(), function () stamina = 30 setTimer(checkKey,700,0) setTimer(updateStamina,2000,0) end) function checkKey() if ( getControlState ( "sprint" ) ) and stamina ~= 0 then stamina = stamina -1 end if ( stamina == 0 ) then setControlState( "sprint", false ) end end function updateStamina() if stamina ~= 30 and getControlState ( "sprint" ) == false then stamina = stamina +1 end end Link to comment
Recommended Posts