Find IP

03/29/2018 17:25 dorado1234#1
Hello guys, somebody know how i can see player ip? i know that using search bottom i can found this service, but i only found "how to ip ban" or other services but i don't found for see player ip.
03/29/2018 17:28 AnimuNazi#2
it should be found in db char panels
03/29/2018 17:35 {Skrillex}#3
Hi,
use this query:
Quote:
SELECT [CharName],[Text1] FROM [PS_GameLog].[dbo].[ActionLog] where [ActionType] = 107 AND [CharName] = 'CharName'
The last result from charname should be the last ip that was used ingame from that charakter.

Regards
03/29/2018 19:36 dorado1234#4
i can see when player is online from my database?
03/29/2018 20:03 {Skrillex}#5
Hi,
yes you can if you have the Column LoginStatus in your Chars table and if you addet some code to your stored procedure.

Donīt know?

Execute this query:
Quote:
SELECT*FROM [PS_GameData].[dbo].[Chars] WHERE [LoginStatus] = 1
If it show some rows then you have addet Loginstatus and you can show your online players. If it shows an error you have to add it.

if you get an error:

Cheers
03/29/2018 21:28 dorado1234#6
I'll try do it. Thank u, skrillex.
04/01/2018 22:02 momocruz#7
download adminpanelNEW on elite and
rewrite this on your "Player_login_status.php" you will see AP donation, IP, pass, ID and other thing on LIVE

04/03/2018 22:55 dorado1234#8
Do u think that with this panel i can see all account from same ip?
04/03/2018 23:01 AnimuNazi#9
well it will tell you the ips base in the acc holder/ char, if you meant just checking Ip's and all the char or account that belongs in that Ip im not quite sure.
04/04/2018 04:41 sominus#10
Quote:
Originally Posted by dorado1234 View Post
Do u think that with this panel i can see all account from same ip?
Find user last ip
Code:
SELECT UserID as ACCOUNT, UserIp FROM PS_UserData.dbo.Users_Master WHERE UserID = 'put_account_here'
Find accounts currently connected from the same ip
Code:
SELECT UserID as ACCOUNT, Leave as IsOnline, UserIp FROM PS_UserData.dbo.Users_Master WHERE UserIp = 'put_ip_here' AND Leave = 1
I asume you're tracking multiclient.
But remember IPs can change, users from a cyber coffe will share same ip, etc, etc.
If you wanna track multiclient, you should also study player behaviors.
04/04/2018 05:31 dorado1234#11
Yes, i'm trying kill multiclient with see her ip

Quote:
Originally Posted by sominus View Post
Find user last ip
Code:
SELECT UserID as ACCOUNT, UserIp FROM PS_UserData.dbo.Users_Master WHERE UserID = 'put_account_here'
Find accounts currently connected from the same ip
Code:
SELECT UserID as ACCOUNT, Leave as IsOnline, UserIp FROM PS_UserData.dbo.Users_Master WHERE UserIp = 'put_ip_here' AND Leave = 1
I asume you're tracking multiclient.
But remember IPs can change, users from a cyber coffe will share same ip, etc, etc.
If you wanna track multiclient, you should also study player behaviors.
Sominus do u know why enter in account and before exit when i try to enter again i have error account dont exist and my leave is 1??
04/06/2018 00:16 AnimuNazi#12
Why dont you just remove multi client entirely from your server? won't that be easier instead of having to look them up individually if you're so worried about this kind of things :P
04/08/2018 05:39 dorado1234#13
Quote:
Originally Posted by AnimuNazi View Post
Why dont you just remove multi client entirely from your server? won't that be easier instead of having to look them up individually if you're so worried about this kind of things :P
Because my game.exe was working without updater for start and i did not know how do it. But u can use multiclient for make stat padding or dupe or other things (sorry for my english)
04/08/2018 17:46 sominus#14
"account doesn't exist' is just a generic error message in this case.
Leave=1 means user is already connected, so it won't let you connect until Leave=0
04/08/2018 19:57 dorado1234#15
Quote:
Originally Posted by sominus View Post
"account doesn't exist' is just a generic error message in this case.
Leave=1 means user is already connected, so it won't let you connect until Leave=0
this mode was opened withouth player conected