06.10.2009, 01:04
uh think something:
pawn Код:
new Text[MAX_PLAYERS][256] = " }~{ ";
public OnPlayerText(playerid,text[])
{
if(Text[playerid] == text)
{
SendClientMessage(playerid,color,"You're repeating youself ^^");
return 0;
}
Text[playerid] = text;
return 1;
}