03.04.2013, 17:44
Eu que estou nisto de PAWN а uns 4 dias (aprender), vou tentar ajudar-te, com base nos links que o Delete_ postou.
Deve ser +/- isto que vou tentar fazer aqui:
Bem, acho que й mais ou menos isso que querias... agora sу tens de tentar imprimir o timer no textdraw. Mas isso ainda nгo sei fazer. Boa sorte
EDIT: Sу reparei agora nas tuas especificaзхes...
Naquilo do vermelho deves conseguir com um if else... no resto nгo te sei ajudar...
Deve ser +/- isto que vou tentar fazer aqui:
PHP код:
#include <zcmd>
forward TextDrawTimer;
new Text:TextDraw0;
public OnGamemodeInit()
{
Textdraw0 = TextDrawCreate(81.000000, 120.000000, "Tempo que falta aqui");
TextDrawAlignment(Textdraw0, 2);
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 2);
TextDrawLetterSize(Textdraw0, 0.500000, 1.000000);
TextDrawColor(Textdraw0, -16776961);
TextDrawSetOutline(Textdraw0, 1);
TextDrawSetProportional(Textdraw0, 1);
}
CMD:iniciartimer(playerid, params[])
{
print("Timer a iniciar...);
SetTimer("TextDrawTimer", 900000, false); // 1000 - 1segundo || 900000 - 15 minutos
TextDrawShowForAll(TextDraw0);
return 1;
}
EDIT: Sу reparei agora nas tuas especificaзхes...
Naquilo do vermelho deves conseguir com um if else... no resto nгo te sei ajudar...