13.07.2009, 12:22
Quote:
Originally Posted by Serediucr
ok , this works , but if i say "fuck this server" doesn't works
|
pawn Код:
public OnPlayerText(playerid, text[])
{
if((strfind(text,"fuck",true))== 0){
new name[24];
new string[128];
GetPlayerName(playerid,name,24);
format(string, 256, "%s Is A Fool",name);
SendClientMessageToAll(COLOR_GREEN,string);
}
return 1;
}