19.01.2013, 01:28
Hello, when I use gettime() for my ban system, it doesn't seem to work properly as it should.
The part where I'm having trouble with my code is gettime() + (86400 * days), it doesn't seem to work. I've already debugged it through the use of printf and it seems to be displaying the days variable fine.
pawn Код:
stock BanPlayerEx(playerid, reason[], type, days)
{
new
szQuery[256];
PlayerInfo[playerid][pBanned] = 1;
format(szQuery, sizeof(szQuery), "UPDATE `accounts` SET `Banned` = '1' WHERE `Id` = '%d'", PlayerInfo[playerid][pId]);
mysql_query(szQuery, THREAD_LOG_RESULT, playerid, mConnectionHandle);
GetPlayerIp(playerid, PlayerInfo[playerid][pIpAddress], 16);
format(szQuery, sizeof(szQuery), "INSERT INTO `bans` (`IP_Address`,`Username`,`Expiry_Date`,`Reason`,`Ban_Type`) \
VALUES ('%s','%s','%d','%s','%d')", PlayerInfo[playerid][pIpAddress], PlayerInfo[playerid][pUsername], gettime() + (86400 * days), reason, type);
mysql_query(szQuery, THREAD_LOG_RESULT, playerid, mConnectionHandle);
printf("Player %s was banned from the server for %d days.", PlayerInfo[playerid][pUsername], days);
Kick(playerid);
}