25.03.2009, 14:16
pawn Код:
stock IsPlayerInCube(playerid, xmin, ymin, zmin, xmax, ymax, zmax)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
if( x > xmin && y > ymin && z > zmin && x < xmax && y < ymax && z < zmax) return 1;
return 0;
}