Jump to content

[REZOLVAT] Intrebare animatie


MaRr
 Share

Recommended Posts

  • Administrator
stock IsPlayerFalling( playerid ) // Definim stock-ul nostru
{
    new Float:Velocity[ 3 ]; // Definim o variabila de tip float cu o dimensiune de 3 celule
    GetPlayerVelocity( playerid, Velocity[ 0 ], Velocity[ 1 ], Velocity[ 2 ] ); // Verificam viteza de deplasare pe toate cele 3 coordonate x,y,z
    return ( Velocity[ 2 ] != 0.0 ); // Daca Z-ul ce reprezinta miscarea pe axa Z(pe verticala) a jucatorului este diferit de 0 stock-ul va returna valoarea 1.
}

 

 

// Exemplu comanda

CMD:pee( playerid, params[] )
{
	if( IsPlayerFalling( playerid ) )
		return SendClientMessage( playerid, ~1, "Te afli in cadere, nu poti folosi aceasta animatie!" );

	// Cod animatie
	return true;
}

 

Credite: @Sinner 

Link to comment
Share on other sites

Acum 16 ore, Leonard a spus:

stock IsPlayerFalling( playerid ) // Definim stock-ul nostru
{
    new Float:Velocity[ 3 ]; // Definim o variabila de tip float cu o dimensiune de 3 celule
    GetPlayerVelocity( playerid, Velocity[ 0 ], Velocity[ 1 ], Velocity[ 2 ] ); // Verificam viteza de deplasare pe toate cele 3 coordonate x,y,z
    return ( Velocity[ 2 ] != 0.0 ); // Daca Z-ul ce reprezinta miscarea pe axa Z(pe verticala) a jucatorului este diferit de 0 stock-ul va returna valoarea 1.
}

 

 

// Exemplu comanda


CMD:pee( playerid, params[] )
{
	if( IsPlayerFalling( playerid ) )
		return SendClientMessage( playerid, ~1, "Te afli in cadere, nu poti folosi aceasta animatie!" );

	// Cod animatie
	return true;
}

 

Credite: @Sinner 

Multumesc, puteti da T/C

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...