FapFap 10 Report post Posted January 9 Can someone tell me how to check player's Account Security Code on database? or is there a way to view it? Share this post Link to post Share on other sites
V3ct0r 1,016 Report post Posted February 12 Hello, @FapFap! The account security code is stored in database GameDB, table account, field password. USE GameDB; SELECT password FROM account WHERE act_name='Admin' This query gives the code for account with login Admin. Note: the code is encrypted with MD5 algorithm, this means that you can not view it, but you can change it to a hash for code that you know. 1 Share this post Link to post Share on other sites