Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define FILTERSCRIPT
- #include <a_samp>
- #include <sscanf2>
- #include <zcmd>
- #define PM_SENT_COLOR 0xFFFF00AA
- #define PM_RECIEVED_COLOR 0x33CCFFAA
- #define COLOR_ERROR 0xAFAFAFAA
- new MenuPlayerClickedID;
- new WhoLastPMed;
- #define ReplyDialog 1335
- #define MenuPMDialog 1336
- #define PMDialog 1337
- #define PMSendingDialog 1338
- #define PMRecievedDialog 1339
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print(" |/| ");
- print(" |/| ");
- print(" |/| ");
- print(" |/| ");
- print(" |/| ");
- print(" |/| /Ż) ");
- print(" |/|/|/ ");
- print(" |/||/ ");
- print(" (ŻŻŻ) ");
- print(" (ŻŻŻ) ");
- print(" (ŻŻŻ) ");
- print(" (ŻŻŻ) ");
- print(" (ŻŻŻ) ");
- print(" /ŻŻ/| ");
- print(" / ,^./| ");
- print(" / / |/| ");
- print(" / / |/| ");
- print(" ( ( )/) ");
- print(" | | |/| ");
- print(" | | |/| ");
- print(" | | |/| ");
- print(" ( ( )/) ");
- print(" | | / / ");
- print(" | `---' / ");
- print(" `-----' ");
- print("PM System by Max_Coldheart");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- #endif
- public OnPlayerRequestClass(playerid, classid)
- {
- SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
- SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
- SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
- return 1;
- }
- CMD:pm(playerid, params[])
- {
- ShowPlayerDialog(playerid, PMDialog, DIALOG_STYLE_INPUT, "PM Dialog", "Type in the players name / ID", "Ok", "Cancel");
- return 1;
- }
- CMD:reply(playerid, params[])
- {
- ShowPlayerDialog(playerid, ReplyDialog, DIALOG_STYLE_INPUT, "PM Dialog", "Type in the message", "Ok", "Cancel");
- return 1;
- }
- public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
- {
- new id;
- if(dialogid == PMDialog)
- {
- if(!response) return 1;
- if(sscanf(inputtext, "r", id)) return ShowPlayerDialog(playerid, PMDialog, DIALOG_STYLE_INPUT, "PM Dialog", "Type in the players name / ID", "Ok", "Cancel");
- if(!IsPlayerConnected(id)) return SendClientMessage(playerid, COLOR_ERROR, "ERROR: Player not online");
- ShowPlayerDialog(playerid, PMSendingDialog, DIALOG_STYLE_INPUT, "PM Dialog", "Type your message here.", "Send", "Cancel");
- }
- else if(dialogid == PMSendingDialog)
- {
- new SenderName[MAX_PLAYER_NAME], string[128], text[256];
- if(sscanf(inputtext, "s[256]", text)) return ShowPlayerDialog(playerid, PMSendingDialog, DIALOG_STYLE_INPUT, "PM Dialog", "Type your message here.", "Send", "Cancel");
- if(strlen(inputtext) < 0) return SendClientMessage(playerid, COLOR_ERROR, "ERROR: You should type a message.");
- GetPlayerName(playerid, SenderName, sizeof(SenderName));
- format(string, sizeof(string), "PM From %s: %s", SenderName, text);
- GameTextForPlayer(playerid, "]PM Sent]", 3000, 5);
- ShowPlayerDialog(id, PMRecievedDialog, DIALOG_STYLE_MSGBOX, "PM", string, "OK", "");
- WhoLastPMed = id;
- }
- else if(dialogid == MenuPMDialog)
- {
- new SenderName[MAX_PLAYER_NAME], string[128], text[256];
- if(sscanf(inputtext, "s[256]", text)) return ShowPlayerDialog(playerid, MenuPMDialog, DIALOG_STYLE_INPUT, "PM Dialog", "Type in the message", "Ok", "Cancel");
- if(strlen(inputtext) < 0) return SendClientMessage(playerid, COLOR_ERROR, "ERROR: You should type a message.");
- GetPlayerName(playerid, SenderName, sizeof(SenderName));
- format(string, sizeof(string), "PM From %s: %s", SenderName, text);
- GameTextForPlayer(playerid, "]PM Sent]", 3000, 5);
- ShowPlayerDialog(MenuPlayerClickedID, PMRecievedDialog, DIALOG_STYLE_MSGBOX, "PM", string, "OK", "");
- WhoLastPMed = id;
- }
- else if(dialogid == ReplyDialog)
- {
- new SenderName[MAX_PLAYER_NAME], string[128], text[256];
- if(sscanf(inputtext, "s[256]", text)) return ShowPlayerDialog(playerid, ReplyDialog, DIALOG_STYLE_INPUT, "PM Dialog", "Type in the message", "Ok", "Cancel");
- if(strlen(inputtext) < 0) return SendClientMessage(playerid, COLOR_ERROR, "ERROR: You should type a message.");
- GetPlayerName(playerid, SenderName, sizeof(SenderName));
- format(string, sizeof(string), "PM From %s: %s", SenderName, text);
- GameTextForPlayer(playerid, "]PM Sent]", 3000, 5);
- ShowPlayerDialog(WhoLastPMed, PMRecievedDialog, DIALOG_STYLE_MSGBOX, "PM", string, "OK", "");
- WhoLastPMed = id;
- }
- return 1;
- }
- public OnPlayerClickPlayer(playerid, clickedplayerid, source)
- {
- ShowPlayerDialog(playerid, MenuPMDialog, DIALOG_STYLE_INPUT, "PM Dialog", "Type in the message", "Ok", "Cancel");
- MenuPlayerClickedID = clickedplayerid;
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment