[AJUDA] SetTimer
#1

Bom Galera. Ainda nгo sei como Usar SetTimer..
e peguei uma Text.. que mostrar os PlAYERS Online..
Mais ela nao atualizar.. Digamos que se entrar 5 Player no Server Marcara la na Text. Mais quando sair 4 FICA Ainda 5 na Text.
Alguem ajuda ?

A a TetxDraw que peguei esta neste Topico : https://sampforum.blast.hk/showthread.php?tid=168818
Reply
#2

pawn Код:
SetTimerEx("playerson", 1000, true, "d", playerid)
pawn Код:
forward playerson(playerid);
public playerson(playerid)
{
    new strings[15];
    format(strings, 15, "%d/50",GetOnLinePlayers());
    TextDrawSetString(players, strings);
    TextDrawShowForPlayer(playerid, players);
    return 1;
}
Reply
#3

Vocк nгo precisa de timer, oras. Pra que disperdiзar memуria e processamento? No OnPlayerConnect e OnPlayerDisconnect coloque o cуdigo que estб no timer, ou seja, o TextDrawSetString.
Reply
#4

Quote:
Originally Posted by SuperChock
Посмотреть сообщение
Vocк nгo precisa de timer, oras. Pra que disperdiзar memуria e processamento? No OnPlayerConnect e OnPlayerDisconnect coloque o cуdigo que estб no timer, ou seja, o TextDrawSetString.
o kra ta pedindo settimer... mas pelo onplayerconnect e disconnect й bem mais prбtico
Reply
#5

pawn Код:
new PON;

public OnPlayerConnect(playerid)
{
     PON++;
     new strings[7];
     format(strings, 7, "%d/50",PON);
     TextDrawSetString(players, strings);
     return 1;
}

public OnPlayerDisconnect(playerid)
{
     PON--;
     new strings[7];
     format(strings, 7, "%d/50",PON);
     TextDrawSetString(players, strings);
     return 1;
}
Reply
#6

aconselho a usar o cуdigo do tiago
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)