31.08.2013, 23:31
Queria Um Sistema tipo quando voзe tenta roubar um carro de uma pessoa ele inicia uma contagem pra ele se auto-destruir ...alguem ae ?
//OnPlayerEnterVehicle
static
TimerDoCarro ;
TimerDoCarro = SetTimerEx ( "ExplodirCarro" , 1000 , true , "i" , vehicleid ) ;
//Fim do GM
static
Tempo [ MAX_VEHICLES ] = 0;
forward ExplodirCarro ( vehicleid ) ;
public ExplodirCarro ( vehicleid ) {
if ( Tempo [ vehicleid ] == 10 ) {
SetVehicleHealth ( vehicleid , 0.0 ) ;
KillTimer ( TimerDoCarro ) ;
}
static
Msg [ 30 ] ;
format ( Msg , 30 , "Tempo para explodir: %d" , 10 - Tempo) ;
GameTextForPlayer ( playerid , Msg , 1000 , 1) ;
++ Tempo [ vehicleid ] ;
}