I'm creating Anti MultiAccount in MySQL.I have big problems with MultiAccounts in my game so I need strong security. Now I'm make that every connection in my game log in mysql.With information about ip and time login. Every time when player connect on my server I use this.
INSERT INTO MULTI(IP, Name,Country,date) VALUES ('127.0.0.1', 'Test' , 'Croatia' ,UNIX_TIMESTAMP())
Now I don't know how that Admins can see possible multiaccounts so I need:
1) How to get all user IP from MULTI table but without repetition same IP's
2) How to get all connected players but without repetition
For example:
A player is login with IP adress 127.0.0.1
B player is also login with 127.0.0.1 IP adress
So A and B player are conncted!They are possible multiaccounts,how to get them(But without repetition of course)
(Sorry for English)