Originally Posted by Adil
IC Chat:
pawn Код:
public OnPlayerText(playerid, text[]) { new string [128]; GetPlayerName(playerid, string, sizeof(string)); format(string, sizeof(string), "%s says: %s", string, text); ProxDetector(20.0, playerid, string, COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5); return 1; }
OOC Chat:
pawn Код:
if(strcmp(string, "/l", true) == 0) { object = strlen(cmdtext); while ((idx < object) && (cmdtext[idx] <= ' ')) { idx++; } new offset = idx; new result[64]; while ((idx < object) && ((idx - offset) < (sizeof(result) - 1))) { result[idx - offset] = cmdtext[idx]; idx++; } result[idx - offset] = EOS; if(!strlen(result)) { SendClientMessage(playerid, COLOR_GREY, "USAGE: /l [chat]"); return 1; } GetPlayerName(playerid, playername, sizeof(playername)); format(string, sizeof(string), "%s %s", playername, result); ProxDetector(30, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE); printf(string); }
|