MySQL R34 - Banning Player
#6

Quote:
Originally Posted by sammp
Посмотреть сообщение
I've also tried using the two parameters, Vince but it gave the same result: nothing.

Can you provide me the codes that _should_ insert it? Thanks for helping, too
Make that function a public and then call it by using

mysql_function_query(g_mysql_handle, szQuery, true, "CheckBanSQL", "d", playerid);
where szQuery would be your MySQL query.

Example:
pawn Код:
stock CheckBan(playerid) {
    new dquery[256];
    format(dquery, sizeof(dquery), "SELECT FROM `bans` WHERE `IP` = '%s'", getIP(playerid));
    mysql_function_query(g_mysql_handle, dquery, true, "CheckBanSQL", "d", playerid);
    return 1;
}
forward CheckBanSQL(playerid);

public CheckBanSQL(playerid) {
    new id_string[MAX_PLAYER_NAME];
    //new id;
    new rows,fields;
    cache_get_data(rows,fields);
   
    if(rows > 0) {
        new reason[128], admin[25], pIp[25];

        cache_get_row(0,1,id_string);
        format(reason, sizeof(id_string), "%s", id_string);
        cache_get_row(0,2,id_string);
        format(admin, sizeof(id_string), "%s", id_string);
        cache_get_row(0,3,id_string);
        format(ip, sizeof(id_string), "%s", id_string);
       
        new string[1024];
       
        format(string, sizeof(string), "You have been blocked from playing here at Rural Roleplay.\n\nInformation of this ban:\n\n\nBanning Administrator: %s\nReason For Ban: %s\n\nYour Name: %s\nYour IP: %s - This IP is blocked", admin, reason, RemoveUnderScore(playerid), getIP(playerid));
        ShowPlayerDialog(playerid, DIALOG_UNUSED, DIALOG_STYLE_MSGBOX, "Information", string, "Exit", "");
       
        printf("%s", string);
        Kick(playerid);
    }
    return 1;
}
Reply


Messages In This Thread
MySQL R34 - Banning Player - by sammp - 18.01.2014, 19:45
Re: MySQL R34 - Banning Player - by Gh0s7 - 18.01.2014, 19:47
Re: MySQL R34 - Banning Player - by sammp - 18.01.2014, 20:02
Re: MySQL R34 - Banning Player - by Vince - 18.01.2014, 20:12
Re: MySQL R34 - Banning Player - by sammp - 18.01.2014, 20:15
Re: MySQL R34 - Banning Player - by InglewoodRoleplay - 18.01.2014, 20:25
Re: MySQL R34 - Banning Player - by sammp - 18.01.2014, 20:48

Forum Jump:


Users browsing this thread: 1 Guest(s)