02.02.2014, 07:43
pawn Код:
public OnPlayerText(playerid, text[]){
new texto[24], name[MAX_PLAYER_NAME], data[144];
GetPlayerName(playerid, name, sizeof(name));
if(Informacion[playerid][Admin] >= 1) {
switch(Informacion[playerid][Admin]){
case 1:{ texto = "Administrador"; }
case 2:{ texto = "moderador"; }
case 3:{ texto = "presidente"; }
//ETC
}
if(DetectarSpam(text)) { SendClientMessage(playerid,COLOR_ROJO,"No hagas SPAM!"); return 0; }
format(data, sizeof(data), "{0000FF}[%s]%s:{FFFFFF} %s", texto, name, text);
SendClientMessageToAll(-1,data);
}
if(Informacion[playerid][Faccion] >= 1) {
switch(Informacion[playerid][Faccion]){
case 1:{ texto = "policia"; }
case 2:{ texto = "bomberos"; }
case 3:{ texto = "putas"; }
//ETC
}
if(DetectarSpam(text)) { SendClientMessage(playerid,COLOR_ROJO,"No hagas SPAM!"); return 0; }
format(data, sizeof(data), "{0000FF}[%s]%s:{FFFFFF} %s", texto, name, text);
SendClientMessageToAll(-1,data);
}
return 1;
}