Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CMD:invite(playerid, params[])
- {
- if (gPlayerData[playerid][E_PLAYER_LEADER] > 0)
- {
- new
- iPlayerID,
- szPlayerName[MAX_PLAYER_NAME],
- szInviteMsg[241];
- if (sscanf(params, "u", iPlayerID))
- return SendClientMessage(playerid, C_WHITE, "KORISTI: /invite [igracev ID/dio imena]");
- else if (iPlayerID == INVALID_PLAYER_ID)
- return SendClientMessage(playerid, C_WHITE, "ERROR: Pogresan ID igraca.");
- GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
- switch(gPlayerData[playerid][E_PLAYER_LEADER])
- {
- case 1:
- {
- gPlayerData[iPlayerID][E_PLAYER_MEMBER] = gPlayerData[playerid][E_PLAYER_LEADER];
- gPlayerData[iPlayerID][E_PLAYER_RANK] = 1; u organizaciju rank na 1
- 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);
- }
- /*case 2:
- {
- gPlayerData[iPlayerID][E_PLAYER_MEMBER] = gPlayerData[playerid][E_PLAYER_LEADER];
- gPlayerData[iPlayerID][E_PLAYER_RANK] = 1;
- 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);
- }*/
- }
- ShowPlayerDialog(iPlayerID, DIALOG_ORG_INVITE, DIALOG_STYLE_MSGBOX, "POZVANI STE U ORGANIZACIJU", szInviteMsg, "Prihvacam", "Odbijam");
- }
- else
- SendClientMessage(playerid, C_WHITE, "ERROR: Moras biti lider da koristis ovu komandu.");
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment