SA-MP Forums Archive
help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: help (/showthread.php?tid=655196)



help - CaptainBoi - 15.06.2018

my posts are getting removed is their any reason please i need help dont dleete them

i want help here to send message to event players that they are winers i tried this
PHP код:
if(GetPlayersInExWar()==2)
     {
      new 
count =0;
      foreach(new 
iPlayer)
      {
       
formatdialog(playeridDIALOG_WINNERSDIALOG_STYLE_MSGBOX"Winners""%s\n""Close"""playername(i));
       
count++;
      }
      if(
GetPlayersInExWar() == && count == 0)
      {
       
format2exwar("%s nobody won the war"playername(playerid));
       return 
1
      }
     } 



Re: help - Beckett - 15.06.2018

Assign a boolean variable for each player, if they won then it should be true -- then loop like you did and check if it's true then show their name.


Re: help - CaptainBoi - 15.06.2018

thanks