• 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!

Windows (Database question) Rep ++ (10 points)

Status
Not open for further replies.

Nikkster

Programmer
Joined
May 9, 2008
Messages
2,848
Reaction score
9
Location
Confidential
Hello, I don't know if this question has been brought up before but, is it a way to search for a player directly using the database or certain mysql questions?

Because I want to find a easier way to add the points to the players account. Rep ++
 
If you're using a server with account names:
SELECT * FROM `accounts` WHERE `name` = 'ACCOUNT_NAME_HERE'

If not:
SELECT * FROM `accounts` WHERE `id` = 'ACCOUNT_NUMBER_HERE'
 
Status
Not open for further replies.
Back
Top