[Ajuda] Verificar se o jogador estб no chгo ou nгo.
#1

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.
Reply
#2

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

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");
}
Reply
#4

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.
Reply
#5

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");
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)