Guest User

Untitled

a guest
Jan 24th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. if(strcmp(cmd, "/wanted", true) == 0)
  2. {
  3. if(IsPlayerConnected(playerid))
  4. {
  5. if(PlayerInfo[playerid][pMember] == 1 || PlayerInfo[playerid][pLeader] == 1 || PlayerInfo[playerid][pMember] == 2 || PlayerInfo[playerid][pLeader] == 2 || PlayerInfo[playerid][pMember] == 3 || PlayerInfo[playerid][pLeader] == 3)
  6. {
  7. SendClientMessage(playerid, COLOR_GREY, "Wanted List :");
  8. for(new i = 0; i < MAX_PLAYERS; i++)
  9. {
  10. if(IsPlayerConnected(i))
  11. {
  12. if(WantedLevel[i] >= 1)
  13. {
  14. GetPlayerName(i, giveplayer, sizeof(giveplayer));
  15. format(string, sizeof(string), "[ID: %d] Name: %s - Wanted Level: %d", i,giveplayer,WantedLevel[i]);
  16. SendClientMessage(playerid, COLOR_WHITE, string);
  17. }
  18. }
  19. }
  20. }
  21. else
  22. {
  23. SendClientMessage(playerid,COLOR_GREY,"You are not Police Departament,Federal Bureau Of Investigations or National Guard !");
  24. }
  25. }
  26. return 1;
  27. }
Add Comment
Please, Sign In to add comment