Serious problem about my gamemode
#9

Quote:
Originally Posted by MP2
Посмотреть сообщение
Show update_zones.
Forward:

pawn Код:
forward update_zones();
Public:

pawn Код:
public update_zones() {
 new line1[10];
 new line2[10];

 for(new i=0; i<MAX_PLAYERS; i++) {
  if(IsPlayerConnected(i) && zoneupdates[i] == 1) {
   if(IsPlayerInZone(i,player_zone[i])) {  }
   else {

    new player_zone_before;
    player_zone_before = player_zone[i];
    player_zone[i] = -1;


    for(new j=0; j<sizeof(zones);j++) {
     if(IsPlayerInZone(i,j) && player_zone[i] == -1) {

      if(player_zone_before == -1) GameTextForPlayer(i,zones[j][zone_name],1500,1);
      else  if(strcmp(zones[j][zone_name],zones[player_zone_before][zone_name],true) != 0) GameTextForPlayer(i,zones[j][zone_name],1500,1);

      player_zone[i] = j;
      format(line1,10,"p%dzone",i);
      format(line2,10,"%d",j);


     }
    }



    if(player_zone[i] == -1) player_zone[i] = player_zone_before;
   }


  }
 }

}
Reply


Messages In This Thread
Serious problem about my gamemode - by Face9000 - 01.05.2012, 19:45
Re: Serious problem about my gamemode - by 2KY - 01.05.2012, 19:46
Re: Serious problem about my gamemode - by Face9000 - 01.05.2012, 19:48
Re: Serious problem about my gamemode - by Mean - 01.05.2012, 19:55
Re: Serious problem about my gamemode - by Face9000 - 01.05.2012, 19:59
Re: Serious problem about my gamemode - by 2KY - 01.05.2012, 22:44
Re: Serious problem about my gamemode - by Face9000 - 02.05.2012, 07:39
Re: Serious problem about my gamemode - by MP2 - 02.05.2012, 07:57
Re: Serious problem about my gamemode - by Face9000 - 02.05.2012, 09:08
Re: Serious problem about my gamemode - by MP2 - 02.05.2012, 09:28

Forum Jump:


Users browsing this thread: 3 Guest(s)