13.01.2015, 16:09
hello, i've been trying to convert my mysql R5 gamemode to R33+.
I got stuck in this portion, how do i convert this to R33+
I got stuck in this portion, how do i convert this to R33+
pawn Код:
new pname[24];
GetPlayerName(playerid, pname, 24);
format(query, sizeof(query), "SELECT `Banned` FROM `players` WHERE `user` = '%s' AND `Banned` = 1 LIMIT 1", pname);
mysql_query(query);
mysql_store_result();
if(mysql_num_rows() != 0)//if number of rows is different from 0 then continue
{
ShowPlayerDialog(playerid, 2344, DIALOG_STYLE_MSGBOX,"Name is banned from the server","Your name is banned from the server!\n post it in the Unban appeals Category.","OK","");
Kick(playerid);
}
mysql_free_result();