15.02.2009, 20:36
No that code would do nothing.. This is what i mean..
pawn Код:
new InArea[MAX_PLAYERS];
public IsPlayerInArea()
{
new Float:X, Float:Y, Float:Z;
for(new i=0; i < MAX_PLAYERS; i++)
{
if (IsPlayerConnected(x)) {
GetPlayerPos(i, X, Y, Z);
if (X <= -1665 && X >= -1832 && Y <= 973 && Y >= 784)
{
SetPlayerHealth(i, 999999.9);
InArea[i] = 1;
}
else
{
if (InArea[i] = 1) {
SetPlayerHealth(i, 100);
InArea[i] = 0;
}
}
}
}
}