[Tutorial] One account per IP
Go to Your Database In Your Navicat and Proceed With These Steps
Go Warz \ dbo \ Functions \ WZ_ACCOUNT_CREATE
Look for and Why
Code:
-- validate that email is unique
if exists (SELECT CustomerID from Accounts WHERE email=@in_Email) begin
select 2 as ResultCode, 'Email already in use' as ResultMsg;
return;
end
add below
Code:
-- validate that IP is unique --mt
if exists (SELECT CustomerID from Accounts WHERE lastloginIP=@in_IP) begin
select 2 as ResultCode, 'Already registered' as ResultMsg;
return;
end
Then go into your launcher and test if it is working Thanks!
---------------------------------------------------------------------------------------------
Sorry for not speak much English -GoogleTradutor-
Credits: @MUIT0L0K0
Re: [Tutorial] One account per IP
Re: [Tutorial] One account per IP
Re: [Tutorial] One account per IP
Re: [Tutorial] One account per IP
how to remove it? coz i try to find this function but i don't found it any idea to disable this coz when i going to loggin from another ip i get ban from sql
Re: [Tutorial] One account per IP
Re: [Tutorial] One account per IP