01.12.2012, 09:07
Quote:
|
you mean like this ??
pawn Код:
|
pawn Код:
stock IsPlayerInSky(playerid)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x,y,z);
for(new i;i<100;i++)
{
if(z-i>0)
SendClientMessage(playerid,-1,"You are falling from the sky!");
}
}


