SA-MP Forums Archive
Send message only to people in a certain team. - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Send message only to people in a certain team. (/showthread.php?tid=92202)



Send message only to people in a certain team. - ilikepie2221 - 18.08.2009

Title says it all, . Like, for example, if someone becomes wanted, everyone in the LSPD team is alerted. No need for complex shit, I just need something basic that I can fill in the field, etc.


Re: Send message only to people in a certain team. - Correlli - 18.08.2009

pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IS_PLAYER_LSPD_TEAM_DEFINE[playerid] >= 1)
{
SendClientMessage(playerid, COLOR, "your text here");
}
}
}