13.06.2013, 10:32
use this :-
pawn Код:
if(strfind(text, "{123456}", true) = -1)
{
SendClientMessage(playerid, TEAM_CYAN_COLOR, "You cannot write this thing !");
return 0;
}
pawn Код:
if(strfind(text, "123456", true) != -1)
{
SendClientMessage(playerid, TEAM_CYAN_COLOR, "You cannot write this thing !");
return 0;
}
pawn Код:
if(strfind(text, "{", true) != -1)
{
SendClientMessage(playerid, TEAM_CYAN_COLOR, "You cannot write this thing !");
return 0;
}