|
Форум Программирование в Pawno Готовые команды /asay - Писать от имени админа |
/asay - Писать от имени админа |
Код if(strcmp(cmd, "/asay", true) == 0) { if (PlayerInfo [playerid][pAdmin]< 1) return SendClientMessage(playerid, COLOR_GREEN, "Вы не админ"); GetPlayerName(playerid, sendername, sizeof(sendername)); new length = strlen(cmdtext); while ((idx < length) && (cmdtext [idx]<= ' ')) { idx++; } new offset = idx; new result[64]; while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) { result[idx - offset] = cmdtext[idx]; idx++; } result[idx - offset] = EOS; if(!strlen(result)) return SendClientMessage(playerid, COLOR_GREEN, "/asay [Текст]"); format(string, sizeof(string), "Администратор %s: %s", sendername, result); SendClientMessageToAll(COLOR_RED,string); return 1; } Автор: Неизвестен Программист любитель :) |
| |||
| |||