Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #define dcmd(%1,%2,%3) if ((strcmp((%3)[1], #%1, true, (%2)) == 0) && ((((%3)[(%2) + 1] == 0) && (dcmd_%1(playerid, "")))||(((%3)[(%2) + 1] == 32) && (dcmd_%1(playerid, (%3)[(%2) + 2]))))) return 1
- #define DIALOGID 9122
- public OnPlayerCommandText( playerid, cmdtext[] )
- {
- dcmd(pdinvite, 8, cmdtext);
- return 0;
- }
- dcmd_pdinvite(playerid, params[]) {
- new skin;
- skin = GetPlayerSkin(playerid);
- if(skin != 288) return SendClientMessage(playerid, 0x2641FEAA, "You are not a chief");
- new target;
- target = strval(params);
- if(!params[0]) return SendClientMessage(playerid, 0x2641FEAA, "ERROR: /pdinvite <playerid>");
- if(target == playerid)
- ShowPlayerDialog(target, 300, DIALOG_STYLE_LIST, "Help", "YES\nNO", "Select", "Cancel");
- return 1;
- }
- public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
- if(dialogid == 300 && response)
- {
- switch(listitem)
- {
- case 1:
- {
- SetPlayerColor(playerid,0x2641FEAA);
- }
- case 0:
- {
- SendClientMessage(playerid, 0x33AA33AA, "You canceled. Was it a mistake? Ask again.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment