• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

website

Lbtg

Advanced OT User
Joined
Nov 22, 2008
Messages
2,398
Reaction score
165
how i can add or delete points for all people on PHP with phpmyadmin ?
 
Set points for all accounts to 0:
SQL:
UPDATE accounts SET premium_points = 0
Give everyone 100 points:
SQL:
UPDATE accounts SET premium_points = premium_points + 100
 
Back
Top