20.06.2016, 20:04
Me imagino algo asi, aun soy muy noob para esto pero se me ocurre asi.. talvez alguien lo haga mejor XDD
PHP код:
public OnGameModeInit()
{
SetTimerEx("Asalto", 20000, false, "i", playerid); // aqui esta los 20 segundos
return1;
}
COMMAND:Robar(playerid,params[])
{
ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.0, 0, 0, 0, 0, 0, 1);
Asalto(playerid);
return 1;
}
forward Asalto(playerid);
public Asalto(playerid)
{
ClearAnimations(playerid); // se detiene la animacion en 20 segun
return 1;
}