14.08.2010, 11:21
Yeh it could although there is another way you can do it, i made it:
Untested but it should work fine.
pawn Код:
stock IsPlayerInWater(playerid)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
if(z <= -2) return true;
return false;
}


