Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define M: msg
- #define msgP: msgp
- #define msgpE: msgpE
- #define msgpI: msgpI
- #define msgpX: msgpX
- #define msgG: msgg
- M:P:E(pid, text[], va_args<>)
- {
- static buffer[300];
- va_formatex(buffer, _, text, va_start<2>);
- format(buffer, sizeof buffer, MSG_C_RED3"•x• Problema - "MSG_C_GOLD" %s", buffer);
- SendClientMessage(pid, -1, buffer);
- return true;
- }
- M:P:I(pid, text[], va_args<>)
- {
- static buffer[300];
- va_formatex(buffer, _, text, va_start<2>);
- format(buffer, sizeof buffer, MSG_C_DEEPSKYBLUE1"•i• Informacija - "MSG_C_SNOW" %s", buffer);
- SendClientMessage(pid, -1, buffer);
- return true;
- }
- M:P:G(pid, text[], va_args<>)
- {
- static buffer[300];
- va_formatex(buffer, _, text, va_start<2>);
- format(buffer, sizeof buffer, MSG_C_CHARTREUSE"•i• Informacija - "MSG_C_LIME_GREEN"%s"MSG_C_SNOW, buffer);
- SendClientMessage(pid, -1, buffer);
- return true;
- }
- M:P:X(pid, text[], va_args<>)
- {
- static buffer[300];
- va_formatex(buffer, _, text, va_start<2>);
- format(buffer, sizeof buffer, "{fcca00}• {fcca1e}%s", buffer);
- SendClientMessage(pid, -1, buffer);
- return true;
- }
Advertisement
Add Comment
Please, Sign In to add comment