Como ago para poner una anim cuando un jugador tien 10 de vida?
#1

Como ago para poner una anim cuando un jugador tien 10 de vida?
Reply
#2

creo que tienes que hacer un timer que chekee cadatanto la vida del player, si es menor de 10 te recomiendo que uses..

ApplyAnimation(playerid, "CRACK", "crckdeth2", 4.0, 0, 0, 0, 1, 0);

Es la mejor y la manera que yo se
Reply
#3

Podrias ponerme algo de ejemplo? que funcione? esque probe muchas pero niinguna me funciona
Reply
#4

Код:
// Second Life Virtual: Sistema de Herido
forward CheckVida();
public CheckVida()
{
	new Float:Life;
	for(new i=0;i<MAX_PLAYERS;i++)
	{
	  if(IsPlayerConnected(i))
	  {
	    GetPlayerHealth(i,Life);
			if(Life < 20.1)
			{
			  new Float:X,Float:Y,Float:Z;
			  GetPlayerPos(i,X,Y,Z);SetPlayerPos(i,X,Y,Z);TogglePlayerControllable(i,0);
				if(!IsPlayerInAnyVehicle(i)) ApplyAnimation(i, "CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0);
				{
					//SendClientMessage(i,COLOR_LIGHTRED," ACTIVA ESTO Y PON UN MENSAJE PARA K LE LLEGE AL JUGADOR SI LO DESEAS.");
}
me parece k eso algo asi:

PD: Recuerda agregar los "new" y los "forward"
Reply
#5

Falta el timer tambien creo
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)