Guest User

Untitled

a guest
Dec 4th, 2013
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. CMD:invite(playerid, params[])
  2. {
  3. if (gPlayerData[playerid][E_PLAYER_LEADER] > 0)
  4. {
  5. new
  6. iPlayerID,
  7. szPlayerName[MAX_PLAYER_NAME],
  8. szInviteMsg[241];
  9.  
  10. if (sscanf(params, "u", iPlayerID))
  11. return SendClientMessage(playerid, C_WHITE, "KORISTI: /invite [igracev ID/dio imena]");
  12. else if (iPlayerID == INVALID_PLAYER_ID)
  13. return SendClientMessage(playerid, C_WHITE, "ERROR: Pogresan ID igraca.");
  14.  
  15. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  16.  
  17. switch(gPlayerData[playerid][E_PLAYER_LEADER])
  18. {
  19. case 1:
  20. {
  21. gPlayerData[iPlayerID][E_PLAYER_MEMBER] = gPlayerData[playerid][E_PLAYER_LEADER];
  22. gPlayerData[iPlayerID][E_PLAYER_RANK] = 1; u organizaciju rank na 1
  23.  
  24.  
  25. format(szInviteMsg, sizeof(szInviteMsg), "Lider %s vas je pozvao u organizaciju Los Santos Police Department.\n\nPritisnite tipku 'Prihvacam' ako zelite prihvatiti poziv za ulazak u tu organizaciju\nili pritisnite tipku 'Odbijam' ako ne zelite prihvatiti.", szPlayerName);
  26. }
  27. /*case 2:
  28. {
  29. gPlayerData[iPlayerID][E_PLAYER_MEMBER] = gPlayerData[playerid][E_PLAYER_LEADER];
  30. gPlayerData[iPlayerID][E_PLAYER_RANK] = 1;
  31. format(szInviteMsg, sizeof(szInviteMsg), "Lider %s vas je pozvao u organizaciju FBI.\n\nPritisnite tipku 'Prihvacam' ako zelite prihvatiti poziv za ulazak u tu organizaciju\nili pritisnite tipku 'Odbijam' ako ne zelite prihvatiti.", szPlayerName);
  32. }*/
  33. }
  34.  
  35. ShowPlayerDialog(iPlayerID, DIALOG_ORG_INVITE, DIALOG_STYLE_MSGBOX, "POZVANI STE U ORGANIZACIJU", szInviteMsg, "Prihvacam", "Odbijam");
  36. }
  37. else
  38. SendClientMessage(playerid, C_WHITE, "ERROR: Moras biti lider da koristis ovu komandu.");
  39. return 1;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment