I made a ban system with this easy-mysql script. My question: How can i get banned players from 'bans' table and make a dialog for this with easy mysql? Please help me..
Код:
CMD:banlist(playerid,params[])
{
new banned[24],string[1024];
new countid = SQL::CountRows("banlist");
for(new id=0;id<countid;id++)
{
if(SQL::RowExists("banlist", "id", id))
{
new handle= SQL::Open(SQL::READ, "banlist", "id",id);
SQL::ReadString(handle, "banlist", banned,24);
SQL::Close(handle);
}
}
format(string,sizeof(string),"%s%s\n",string,banned);
ShowPlayerDialog(playerid,DIALOG_BANINFO,DIALOG_STYLE_MSGBOX,"Banned Players",string,"Close","");
return 1;
}