get Players
#1

pawn Код:
.              for(new i;i<MAX_PLAYERS;i++)
               {
                   if(IsPlayerConnected(i))
                   {
                      GetPlayerName(i, playername, MAX_PLAYER_NAME);
                      format(string, sizeof string,"%s%d %s\n",string,i,playername);
                   }
                   
               }
               ShowPlayerDialog(playerid, LIST, DIALOG_STYLE_LIST,"PlayersLIST",string, "ok", "Cancel");


               



               if(dialogid == LIST)
               {
                  if(response)
                  {
                     giveplayerid = ??????;
                     GivePlayerMoney(giveplayerid,1000);
                  }
                  else
                  {

                  }
                  return 1;
               }
Reply
#2

Why you posted this?

Does this not work in your server or do you get errors
Reply
#3

lol what is the errors here o_0
Reply
#4

pawn Код:
new moneyid[MAX_PLAYERS];
new id;
               for(new i;i<MAX_PLAYERS;i++)
               {
                   if(IsPlayerConnected(i))
                   {
                      GetPlayerName(i, playername, MAX_PLAYER_NAME);
                      format(string, sizeof string,"%s%d %s\n",string,i,playername);          
                      moneyid[id] = i;
                      id += 1;
                   }
                   
               }
               ShowPlayerDialog(playerid, LIST, DIALOG_STYLE_LIST,"PlayersLIST",string, "ok", "Cancel");


               



               if(dialogid == LIST)
               {
                  if(response)
                  {
                     giveplayerid = moneyid[listitem];
                     GivePlayerMoney(giveplayerid,1000);
                  }
                  else
                  {

                  }
                  return 1;
               }
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)