Advertisement
Guest User

Untitled

a guest
Feb 12th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. CMD:dodaj_policja(playerid, cmdtext[])
  2. {
  3. new string[256];
  4. if(IsPlayerAdmin(playerid) == 1) {
  5. new string2[256];
  6. string = strtok(cmdtext, idx);
  7. if(!strlen(string)) {
  8. SendClientMessage(playerid, COLOR_YELLOW, "Wpisz: /dodaj_policja [nick]");
  9. return 1;
  10. }
  11. new nick[256];
  12. nick = string;
  13. format(string2, sizeof(string2), "Gracz %s zostal dodany do Policji!", string);
  14. SendClientMessage(playerid, ZIELONY, string2);
  15. string = strtok(cmdtext, idx);
  16. DOF2_SetString(POLICJA, nick, "1");
  17. }
  18. return 1;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement