[Ajuda] Textdraw
#1

Galera desculpa estar aqui novamente, mais meu problema й o seguinte, eu tenho um sistema de gasolina em textdraw ai ele tem um soma muito louca la que abaixa o combustivel(diminue o Txd da gasolina) , sу que quando ele fica em 0,
em vez dele parar ele continua , ai vai aumentando o Txd para -1, -2, -3, e o txd vai ficando mais grande para o outro lado.
Queria saber se tem como fazer uma verificaзгo para o txd parar de descer , sу ficar no 0.
Reply
#2

if(gasolina > 0) gasolina = gasolina - 1;
Reply
#3

onde coloco isso?
Reply
#4

No mesmo local onde estб os TextDraw diminuнdo "-1 -2 -3..."
Reply
#5

Quote:
Originally Posted by OtimoJogo
Посмотреть сообщение
No mesmo local onde estб os TextDraw diminuнdo "-1 -2 -3..."
onde ela diminui ta

Код:
            switch(fuel[GetPlayerVehicleID(i)]);
			{
                case 94 .. 100: PlayerTextDrawTextSize(i, v_progress_cinza_gas[i], (507.00 + ((97.0 * 100) / 100 -5.5)), 0.0);
                default: PlayerTextDrawTextSize(i, v_progress_cinza_gas[i], (507.00 + ((97.0 * fuel[GetPlayerVehicleID(i)]) / 100 )), 0.0);
			}
como coloco ele ai ?
Reply
#6

PHP код:
if(fuel[GetPlayerVehicleID(i)] < 1) continue;

switch(
fuel[GetPlayerVehicleID(i)])
{
    case 
94 .. 100PlayerTextDrawTextSize(iv_progress_cinza_gas[i], (507.00 + ((97.0 100) / 100 -5.5)), 0.0);
    default: 
PlayerTextDrawTextSize(iv_progress_cinza_gas[i], (507.00 + ((97.0 fuel[GetPlayerVehicleID(i)]) / 100 )), 0.0);

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)