02.06.2014, 17:08
Olб galera!
To tentando fazer um comando pra mostrar o tempo em Textdraw, Se puderem ajudar vai ser muito bom.
aqui estб um exemplo:
Qualquer dъvida da explicaзгo й sу comentar...
Grato!!!
To tentando fazer um comando pra mostrar o tempo em Textdraw, Se puderem ajudar vai ser muito bom.
aqui estб um exemplo:
pawn Код:
//TEXTO DO COMANDO
comando[i] = TextDrawCreate(369.000000, 396.000000, "Vocк podera usar este comando em: ");
TextDrawBackgroundColor(comando[i], 255);
TextDrawFont(comando[i], 1);
TextDrawLetterSize(comando[i], 0.239999, 1.200001);
TextDrawColor(comando[i], -16776961);
TextDrawSetOutline(comando[i], 1);
TextDrawSetProportional(comando[i], 1);
//COMANDO COM TEMPO
if(strcmp("/comando", cmdtext, true) == 0) {
new string[50];
format(string,sizeof(string),"Vocк podera usar este comando em:~p~ %s",m, s/*Tempo em minutos e segundos*/);
TextDrawSetString(comando[playerid],string);
return 1;
}
//AVISO DE COMANDO QUANDO ESTIVER DISPONIVEL
forward JailRelease(playerid);
public JailRelease(playerid)
{
KillTimer( /*nгo sei*/ [playerid]);
GameTextForPlayer(playerid,"~n~~n~~n~~n~~n~~n~~y~~g~Comando Disponivel",5000,3);
}
Grato!!!