Mam taki problem nie za bardzo wiem jak umieścić ten pasek nad bohaterem.
A o to kod do owego paska :) , Z góry dziekuje
GML
var xx,yy,ww,hh,t,t_max,proc;
if ( alarm[ 0 ] > 0 )
{
ww = 120
hh = 10
xx = ( room_width / 2 ) - ( ww / 2 );
yy = room_height - 40;
t = alarm[ 0 ]
t_max = 40
proc = abs( t_max - t ) / t_max;
//rosnąca
draw_set_color( c_gray );
draw_rectangle( xx , yy , xx + ( ww * proc ) , yy + hh , false );
draw_set_color( c_black );
draw_rectangle( xx , yy , xx + ww , yy + hh , true );
}