07.05.2012, 13:52
Delete the return
pawn Код:
public pezona()
{
for(new playerid; playerid != MAX_PLAYERS; playerid++)
for(new i; i<sizeof(ZoneInfo); i++)
{
if(IsPlayerInZone(playerid, i) && ZoneInfo[i][zTeam] == 12)
{
GameTextForPlayer(playerid, "bla bla",5000, 1);
}
else if(IsPlayerInZone(playerid, i) && ZoneInfo[i][zTeam] == 13)
{
GameTextForPlayer(playerid, "bla bla",5000, 1);
}
else if(IsPlayerInZone(playerid, i) && ZoneInfo[i][zTeam] == 14)
{
GameTextForPlayer(playerid, "bla bla",5000, 1);
}
else if(IsPlayerInZone(playerid, i) && ZoneInfo[i][zTeam] == 15)
{
GameTextForPlayer(playerid, "bla bla",5000, 1);
}
}
return 1;// hйhй
}