SA-MP Forums Archive
[Ajuda] Verificar se o jogador estб no chгo ou nгo. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Verificar se o jogador estб no chгo ou nгo. (/showthread.php?tid=541157)



Verificar se o jogador estб no chгo ou nгo. - PetterAdriano - 10.10.2014

Bom o titulo diz tudo.

Estou querendo verificar se o player estar no chгo ou acima do chгo.

Se alguйm me dizer uma funзгo eu agradeзo.


Re: Verificar se o jogador estб no chгo ou nгo. - MultiKill - 10.10.2014

Impossнvel, vocк teria que ver a coordenada z, e como o mapa do gta nгo й plano й muito difнcil.


Re: Verificar se o jogador estб no chгo ou nгo. - Saidmrn - 10.10.2014

Quote:
Originally Posted by MultiKill
Посмотреть сообщение
Impossнvel, vocк teria que ver a coordenada z, e como o mapa do gta nгo й plano й muito difнcil.
eu acho que ele quis dizer ACIMA do chгo.

Tente:
new float,float:y,float:z
GetPlayerPos(playerid,x,y,z);

if(z > 0)
{
SendClientMessage(playerid,-1,"Vocк estб acima do chгo");
}else{
SendClientMessage(playerid,-1,"Vocк estб abaixo do chгo");
}


Re: Verificar se o jogador estб no chгo ou nгo. - ipsLuan - 10.10.2014

pawn Код:
new float:X, float:Y, float:Z
        GetPlayerPos(playerid,x,y,z);

if(z > 0) {
SendClientMessage(playerid,-1,"Vocк estб acima do chгo");
}else return SendClientMessage(playerid,-1,"Vocк estб abaixo do chгo"); {
}
Nгo sei se vai funcionar.


Re: Verificar se o jogador estб no chгo ou nгo. - connork - 10.10.2014

Jб ouviram falar em MapAndreas?

https://sampforum.blast.hk/showthread.php?tid=275492

pawn Код:
new Float:X, Float:Y, Float:Z, Float:fZ;
GetPlayerPos(playerid, X, Y, Z);
MapAndreas_FindZ_For2DCoord(X, Y, fZ);
if(Z > fZ + 1.0) printf("Jogador acima do chгo.");
else printf("Jogador abaixo do chгo");