07.01.2014, 13:38
pawn Код:
forward isBanned(playerid);
public isBanned(playerid) {
new rows, fields;
cache_get_data(rows, fields,mysql);
if ( rows ){
new Nome[MAX_PLAYER_NAME];
new Info[256], admin[MAX_PLAYER_NAME], motivo[64];
GetPlayerName(playerid,Nome,sizeof(Nome));
cache_get_field_content(0, "reason", motivo, mysql);
cache_get_field_content(0, "admin", admin, mysql);
format(Info,sizeof(Info),"Olб vocк esta Banido !\nNome da conta : %s\nRasгo %s\nNome do Admin %s",Nome, motivo, admin);
ShowPlayerDialog(playerid,Dialog_Ban, DIALOG_STYLE_MSGBOX, "Vocк estб banido", Info, "Ok","");
SetTimerEx("KickWithMessage", 500, 0,"");
}
return 1;
}