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 i: Player)
{
formatdialog(playerid, DIALOG_WINNERS, DIALOG_STYLE_MSGBOX, "Winners", "%s\n", "Close", "", playername(i));
count++;
}
if(GetPlayersInExWar() == 0 && 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