SA-MP Forums Archive
Please 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: Please Help (/showthread.php?tid=363331)



Please Help - rumen98 - 27.07.2012

Who can help me with this command to work with if(PlayerInfo[playerid][Radio] < 1)


PHP код:
CMD:ar(playeridparams[])
{
    if(
gTeam[playerid] == TEAM_POLICE)
    {
        new 
string[100], pname[24];
        if(
isnull(params)) return SendClientMessage(playeridCOLOR_RED"USAGE: /ar [msg]");
        
GetPlayerName(playeridpname24);
        
format(stringsizeof(string), "** %s [%d] At [A-F Radio]: %s",pname,playerid,params);
        
printf("%s"string);
        for(new 
i=0;i<MAX_PLAYERS;i++)
        {
           if(
IsPlayerConnected(i)) if(gTeam[i] == TEAM_POLICESendClientMessage(iCOLOR_WHITEstring);
        }
    } else 
SendClientMessage(playeridCOLOR_RED"Only The Airforce Can Use This Radio!");
    return 
1;