Dialog help
#1

So, listen. I'm trying to make a dialog where it checks every player, and then shows if they have a certain value set in a dialog. I can't figure it out.

I used

pawn Код:
for(new i=0,n;i<MAX_PLAYERS;i++)
To check all the players, yet when it won't show.

the n is for an ID number which goes up in increments of 1.
Reply
#2

pawn Код:
Variable[MAX_PLAYERS];
string[size];
for(new i = 0; i <= MAX_PLAYERS; i++)
{
     if(Variable[i] = value)
     {
          format(string, sizeof(string), "%s\nNew Information", string);
          continue;
      }
      else IF THERE IS ONE.
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)