MYSQL REP+ - 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 REP+ (
/showthread.php?tid=571108)
MYSQL REP+ -
Trevor Gin - 16.04.2015
Hello, How i can set all accounts AdminRank and Helper to 0? i want purge all staff
im using mysql
Re: MYSQL REP+ -
MEW273 - 16.04.2015
Hi ShadeWalker,
You can run the following query from phpmyadmin or your gamemode to do this:
Код:
UPDATE `accounts` SET `AdminRank`=0,`Helper`=0 WHERE 1
This will set ALL accounts AdminRank & Helper to 0.
Re: MYSQL REP+ -
R0 - 16.04.2015
Use this
pawn Код:
UPDATE `accountfile` SET `adminrank`=0, `Helperlevel`=0 WHERE 1
Re: MYSQL REP+ -
Trevor Gin - 16.04.2015
Thanks