Z klocków na kod
Zakładka Score
Ramka Score
Set the score - score=0 // jak chcemy relative to dajemy przed liczbą score+
If score has a value (z equal to) - if (score=0)
If score has a value (z smaller then) - if (score<0)
If score has a value (z larger then) - if (score>0)
Draw the value of score - draw_text(0,0,"Wynik:"+string(score)) // wartości liczbowe to x i y więc relative znów nie muszę podawać :)
Show the highscore table (z simple) - highscore_show(score);
Show the highscore table (z extendent) - highscore_show_ext(score,nazwabackground,true,255,0,"Courier New",10); // pierwsza wartość liczbowa to kolor tła, a druga to kolor czcionki. Resztę chyba rozpoznacie
Clear the highscore table - highscore_clear();
Tabelka Lives
Set the number of lives - lives=0 // relative to dodanie lives+ przed liczbą
If lives is a value (z equal to) - if (lives=0)
If lives is a value (ze smaller then) - if (lives<0)
If lives is a value (z larger then) - if (lives>0)
Draw the number of lives - draw_text(0,0,"Żyć:"+string(lives)) // dwie pierwsze wartości to x i y, więc o relative znowu nie piszę, ponieważ go dobrze znacie
Draw the lives as image - {
var xx, temp;
xx=lives;
temp=sprite_index
sprite_index=nazwasprite;
repeat(lives) {draw_sprite(nazwasprite,-1,0+(xx-1)*sprite_width,0); xx-=1}
sprite_index=temp;
} // trochę to jest trudne więc lepiej używać klocka do tego :) (jeżeli jesteś n00b :) )
Ramka Health
Set the health - health=0 // relative to dodanie przed liczbę health+
If health is a value (z equal to) - if (health=0)
If health is a value (ze smaller then) - if (health<0)
If health is a value (z larger then) - if (health>0)
Draw the health bar - action_draw_health(x1,y1,x2,y2,0,"green to red"); // chyba podanie relative jest zbędne :)
Set the window caption info - action_set_caption(true,"wynik:",true,"żyć:",true,"zdrowie:"); // jeżeli chcesz żeby czegoś nie wyświetlało, to zamieniasz true na false