MySQL Un Ban ? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: MySQL Un Ban ? (
/showthread.php?tid=611053)
MySQL Un Ban ? -
sampkinq - 01.07.2016
Hello, I want to remove the ban of the player. How Can I do this. I'm using version MySQL: R39-5
Re: MySQL Un Ban ? -
d1git - 02.07.2016
Код:
DELETE FROM Accounts WHERE Username = '';
Re: MySQL Un Ban ? -
sampkinq - 02.07.2016
I want to make in this style. How Can I do that ?
Код:
new query[128];
mysql_format(g_SQL, query, sizeof(query), "UPDATE `oyuncuData` SET `BanDeger` = '0' WHERE `Isim` = '%e' LIMIT 1", nick);
mysql_tquery(g_SQL, query);