|
You last visited: Today at 05:06
Advertisement
[Csro] Hamachi 1 User only can connect ?!
Discussion on [Csro] Hamachi 1 User only can connect ?! within the SRO Private Server forum part of the Silkroad Online category.
06/17/2016, 09:25
|
#1
|
elite*gold: 0
Join Date: Dec 2011
Posts: 29
Received Thanks: 2
|
[Csro] Hamachi 1 User only can connect ?!
Hello Experts ...
well , i was making my own private server my problem was in testing  i am running the server in hamachi with my friends the problem is when one account success in login the others get "account already connected" when they try to login with different account even its gm or non ..
So , if any expert can help me i would be thankful
|
|
|
06/17/2016, 19:26
|
#2
|
elite*gold: 0
Join Date: Feb 2016
Posts: 652
Received Thanks: 342
|
Hamachi Limit is 5 i think,
you using "VSRO" or "CSRO",
check the Certificate_num
if its the same like,
"54567890"
other must be
"54567891"
|
|
|
06/18/2016, 01:51
|
#3
|
elite*gold: 0
Join Date: Dec 2011
Posts: 29
Received Thanks: 2
|
Quote:
Originally Posted by 哈野浅哈
Hamachi Limit is 5 i think,
you using "VSRO" or "CSRO",
check the Certificate_num
if its the same like,
"54567890"
other must be
"54567891"
|
Thanks For your Replay , Actually Am using CSRO Files I have changed certification number as u said and unfortunately it does not work and the problem still there
|
|
|
06/18/2016, 08:28
|
#4
|
elite*gold: 0
Join Date: Jul 2009
Posts: 1,860
Received Thanks: 760
|
Ensure entering the Hamachi "IPs" to your privileged table of those who want to enter your server. I vaguely remember that this was necessary as well.
Other than that, dude, use your raw IP (if static) or a free of charge dyndns service like NoIP.
This will make things uncomplicated, and trust me, no one is going to hack your ***, if you are just up for friends-gameplay stuff ish thing.
If you want some help with this, setting up your server properly to achieve this, send me a PM woth your Skype ID. And yes, you don't have to pay anything.
|
|
|
06/18/2016, 09:07
|
#5
|
elite*gold: 0
Join Date: Dec 2011
Posts: 29
Received Thanks: 2
|
Quote:
Originally Posted by blapanda
Ensure entering the Hamachi "IPs" to your privileged table of those who want to enter your server. I vaguely remember that this was necessary as well.
Other than that, dude, use your raw IP (if static) or a free of charge dyndns service like NoIP.
This will make things uncomplicated, and trust me, no one is going to hack your ***, if you are just up for friends-gameplay stuff ish thing.
If you want some help with this, setting up your server properly to achieve this, send me a PM woth your Skype ID. And yes, you don't have to pay anything.
|
First of all thanks for your replay i really appreciate that ,
i did that but the problem not fixed , I have also tried to connect another pc via my local home network and same thing happend one account only can be there
no one knows ?!
|
|
|
06/20/2016, 02:10
|
#6
|
elite*gold: 0
Join Date: Feb 2016
Posts: 652
Received Thanks: 342
|
Quote:
Originally Posted by tarq111
First of all thanks for your replay i really appreciate that ,
i did that but the problem not fixed , I have also tried to connect another pc via my local home network and same thing happend one account only can be there
no one knows ?! 
|
i had the same error, and it was from the certf num, as i told u and check server.cfg for ip limit
|
|
|
06/21/2016, 07:58
|
#7
|
elite*gold: 0
Join Date: Dec 2011
Posts: 29
Received Thanks: 2
|
Quote:
Originally Posted by 哈野浅哈
i had the same error, and it was from the certf num, as i told u and check server.cfg for ip limit
|
idid that as u see in the img below :-
still have the same problem ... beside I am using CSRO Files not Vsro
|
|
|
06/21/2016, 16:13
|
#8
|
elite*gold: 0
Join Date: Feb 2016
Posts: 652
Received Thanks: 342
|
Quote:
Originally Posted by tarq111
idid that as u see in the img below :-
still have the same problem ... beside I am using CSRO Files not Vsro
|
no no no, take the default number and add +1 like if it was 101010 make it 101011 u understand? don't take my number it won't work, make it with the default number bro
|
|
|
06/22/2016, 09:51
|
#9
|
elite*gold: 0
Join Date: Dec 2011
Posts: 29
Received Thanks: 2
|
Quote:
Originally Posted by 哈野浅哈
no no no, take the default number and add +1 like if it was 101010 make it 101011 u understand? don't take my number it won't work, make it with the default number bro
|
okay , I have change the certification_num to my default number + 1 but problem still there ...
did u know what is the verification procedure which cause this problem this really could help me cuz i think problem is there ?!
Beside i was thinking that the problem is in _CertifyTBUser and _CertifyUser procedure so here is my procedures they dont use the certification_number !
_CertifyTBUser :-
USE [SRO_R_Accountdb]
GO
/****** Object: StoredProcedure [dbo].[_CertifyUser] Script Date: 6/22/2016 9:49:15 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[_CertifyUser]
@  serID varchar(25), @  assword varchar(50),
@  SNumber varchar(32)
as
declare @  erJID int declare @  primary tinyint
declare @  content tinyint set @  erJID = 0
set @  primary = 0 set @  content = 0
if (not exists(select JID from TB_User where StrUserID = @  serID))
begin
select convert( int, 0), convert( tinyint, 0), convert( tinyint, 0)
return
end
select @  erJID = JID from TB_User where StrUserID = @  serID if @  erJID = 0 or @  erJID is null or @@error <> 0 or @@rowcount = 0)
begin
select convert( int, 0), convert( tinyint, 0), convert( tinyint, 0)
return
end
if (not exists(select JID from TB_User where JID = @  erJID and password = @  assword))
begin
select convert( int, 0), convert( tinyint, 0), convert( tinyint, 0)
return
end
select @  primary = sec_primary, @  content = sec_content from TB_User with (nolock) where JID = @  erJID select @  erJID, @  primary, @  content
_CertifyUser
USE [SRO_R_Accountdb]
GO
/****** Object: StoredProcedure [dbo].[_CertifyUser] Script Date: 6/22/2016 9:49:15 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[_CertifyUser]
@  serID varchar(25), @  assword varchar(50),
@  SNumber varchar(32)
as
declare @  erJID int declare @  primary tinyint
declare @  content tinyint set @  erJID = 0
set @  primary = 0 set @  content = 0
if (not exists(select JID from TB_User where StrUserID = @  serID))
begin
select convert( int, 0), convert( tinyint, 0), convert( tinyint, 0)
return
end
select @  erJID = JID from TB_User where StrUserID = @  serID if @  erJID = 0 or @  erJID is null or @@error <> 0 or @@rowcount = 0)
begin
select convert( int, 0), convert( tinyint, 0), convert( tinyint, 0)
return
end
if (not exists(select JID from TB_User where JID = @  erJID and password = @  assword))
begin
select convert( int, 0), convert( tinyint, 0), convert( tinyint, 0)
return
end
select @  primary = sec_primary, @  content = sec_content from TB_User with (nolock) where JID = @  erJID select @  erJID, @  primary, @  content
If problem there u could upload yours for me i would be thankfull and sorry for this disturb ..
|
|
|
 |
Similar Threads
|
csro failed to connect the server (c7) help pls anyone
04/14/2016 - SRO Private Server - 2 Replies
csro failed to connect the server (c7) help pls anyone
here is image
http://www.apnihost.com/images/c7.jpg
|
how to connect another user?
09/18/2013 - WarRock - 6 Replies
Hello friends.
I'm with a servedor
I have two users created.
my database created in online.
server is on my computer.
|
Minecraft Hamachi Server Failed to connect to the server Connection refused connect
01/26/2012 - Minecraft - 1 Replies
Hallo zusammen,
Wir haben einen Hamachi Server, den wir für den Multiplayer Mode von Minecraft verwenden. Bis jetzt ging alles einwandfrei, doch seit heute geht nix mehr. Der Ersteller vom Hamachi Server ist zwar online, doch wenn ich in den Server in Minecraft reingehe, kommt die Fehlermeldung:
Failed to connect to the server
Connection refused: connect
Was geht da schief?
Danke im Voraus.
MfG kugelmanno
|
Problem with cSRO (user already connected)..
07/11/2010 - Silkroad Online - 6 Replies
Ok so today I got the first time a problem with the error message "This user is connected already.." blabla and then after some time I tried with another account and now it says the same thing to that.. And none of the chars were online in the game o.O So... what´s causing this error?
Thanks in advantage (IF YOUR HELP WAS USEFUL OFC) :P
And second problem would be with the CID... Can´t get it work to create a new account. Says that I´m not authorized to use the program and from...
|
[Csro] User Already Connected Problem?!
10/12/2009 - Silkroad Online - 7 Replies
hello to all players in Elitepvpers, this is the first time im starting Csro.
I have a problem , After i downloaded the Game and got Csro Loader, i went to log in and it says that the User is already logged in the game, so i was thinking my account gotten hacked? , so i went to made a new account and when i tried that one, it said the SAME DAMN THING!, Can you guys help me and tell me whats going on? Thank you
Greetz JonJon
|
All times are GMT +1. The time now is 05:08.
|
|