01.12.2012, 09:02
You can use an array too, like:
pawn Код:
stock IsPlayerInSky(playerid)
{
new Float:Pos[3];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
if(Pos[2] == 100)
{
return 1;
}
else
{
return 0;
}
}