[Pedido] Ao dar a rй, o carro buzina.
#1

Pessoal queria fazer um pedido a vocкs, que quando o player dar a rй no veнculo, ele fique buzinando, e quando ele voltar ao normal 'andar pra frente, lado' a buzina pare.

Obrigado a quem me ajudar.
Reply
#2

faзa algo do genero
https://sampwiki.blast.hk/wiki/GetPlayerKeys

em OnPlayerUpdate, detecta o key e se for ==KEY_DOWN entao й so colocar o som da buzina PlayerPlaySound

ja agora o id do som voce pode achar na lista, creio que й "1147 car horn"
Reply
#3

So usar GetPlayerKeys que o darta usou acima, pra detectar a tecla pra dar rй.
Reply
#4

Tenta ai

Код:
OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
	if(IsPlayerInAnyVehicle(playerid))
	{
		if(newkeys == KEY_DOWN)
		{
		PlayerPlaySound(playerid, 1147, 0, 0, 0);
		}
	}
	return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)