Register for your free account! | Forgot your password?

Go Back   elitepvpers MMORPGs Shaiya Shaiya Private Server Shaiya PServer Development
You last visited: Today at 18:35

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Please reconnect to server ERROR 0

Discussion on Please reconnect to server ERROR 0 within the Shaiya PServer Development forum part of the Shaiya Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2011
Posts: 51
Received Thanks: 30
Please reconnect to server ERROR 0

fixed
andya78 is offline  
Old   #2
 
elite*gold: 0
Join Date: Jun 2009
Posts: 17
Received Thanks: 0
would be nice If you shared the fix please
bham666 is offline  
Old   #3
 
elite*gold: 0
Join Date: Feb 2012
Posts: 59
Received Thanks: 28
depends on what's the error.
If the error appears when you are on the select server screen edit and run this query
Code:
IF NOT EXISTS (SELECT [name] FROM master.dbo.syslogins WHERE name = 'Shaiya')
BEGIN
	EXEC sp_addlogin 'your-db-username', 'your-db-userpassword', 'PS_GameDefs';
END	
EXEC sp_addsrvrolemember 'your-db-username', 'sysadmin';

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='game') 
begin
exec sp_dropserver 'game','droplogins'
end
exec sp_addlinkedserver 'game','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'game','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_NCASH') 
begin
exec sp_dropserver 'PS_NCASH','droplogins'
end
exec sp_addlinkedserver 'PS_NCASH','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_NCASH','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_USERDB') 
begin
exec sp_dropserver 'PS_USERDB','droplogins'
end
exec sp_addlinkedserver 'PS_USERDB','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_USERDB','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_USERDB01') 
begin
exec sp_dropserver 'PS_USERDB01','droplogins'
end
exec sp_addlinkedserver 'PS_USERDB01','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_USERDB01','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_DEFINEDB') 
begin
exec sp_dropserver 'PS_DEFINEDB','droplogins'
end
exec sp_addlinkedserver 'PS_DEFINEDB','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_DEFINEDB','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_GAMEDB01') 
begin
exec sp_dropserver 'PS_GAMEDB01','droplogins'
end
exec sp_addlinkedserver 'PS_GAMEDB01','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_GAMEDB01','false',null,'your-db-username','your-db-userpassword'
VirtuozZ is offline  
Thanks
1 User
Old   #4
 
elite*gold: 0
Join Date: Mar 2012
Posts: 172
Received Thanks: 46
Quote:
Originally Posted by VirtuozZ View Post
depends on what's the error.
If the error appears when you are on the select server screen edit and run this query
Code:
IF NOT EXISTS (SELECT [name] FROM master.dbo.syslogins WHERE name = 'Shaiya')
BEGIN
	EXEC sp_addlogin 'your-db-username', 'your-db-userpassword', 'PS_GameDefs';
END	
EXEC sp_addsrvrolemember 'your-db-username', 'sysadmin';

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='game') 
begin
exec sp_dropserver 'game','droplogins'
end
exec sp_addlinkedserver 'game','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'game','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_NCASH') 
begin
exec sp_dropserver 'PS_NCASH','droplogins'
end
exec sp_addlinkedserver 'PS_NCASH','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_NCASH','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_USERDB') 
begin
exec sp_dropserver 'PS_USERDB','droplogins'
end
exec sp_addlinkedserver 'PS_USERDB','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_USERDB','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_USERDB01') 
begin
exec sp_dropserver 'PS_USERDB01','droplogins'
end
exec sp_addlinkedserver 'PS_USERDB01','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_USERDB01','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_DEFINEDB') 
begin
exec sp_dropserver 'PS_DEFINEDB','droplogins'
end
exec sp_addlinkedserver 'PS_DEFINEDB','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_DEFINEDB','false',null,'your-db-username','your-db-userpassword'

if exists(select * 
from master..sysservers 
where isremote=1 and srvname='PS_GAMEDB01') 
begin
exec sp_dropserver 'PS_GAMEDB01','droplogins'
end
exec sp_addlinkedserver 'PS_GAMEDB01','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_GAMEDB01','false',null,'your-db-username','your-db-userpassword'
Hey its the query from the shaiya ep7 server file lol
VIAT is offline  
Old   #5
 
elite*gold: 0
Join Date: Feb 2012
Posts: 59
Received Thanks: 28
yes it is, just edited 2 things for (if server already runned) don't loose infos about existing accounts
VirtuozZ is offline  
Old   #6
 
[ADM]BLooM's Avatar
 
elite*gold: 0
Join Date: Sep 2011
Posts: 45
Received Thanks: 37
Hello guys i have some problem with the same error but is it after i choise my toon and i click on Game Start ! Someone can leave me a message what is wrong ?
[ADM]BLooM is offline  
Old   #7
 
JohnHeatz's Avatar
 
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,981
That would be because of a mismatch between client and server, fix that and you shouldn't have this issue, as well check on your logs, there you will find the exact issue.
JohnHeatz is offline  
Old   #8
 
[ADM]BLooM's Avatar
 
elite*gold: 0
Join Date: Sep 2011
Posts: 45
Received Thanks: 37
Ok but the problem cant resolve it by myself i just asked here for know what to say to the Dev when he`s come on .... cuz isnt my server already is almost 8h when i try to log on game and i cant cuz i get always this error ... >.> .... i will try to talk with him to see what is happen !!!!
[ADM]BLooM is offline  
Old   #9
 
elite*gold: 0
Join Date: Mar 2011
Posts: 51
Received Thanks: 30
rather late to reply to this but bloom i found it was one of my sdata files that was double encrypted so just used lph's data tool to extract and decrypted each one 2-3 times till it gave me an error then re encrypted them one at a time
andya78 is offline  
Reply


Similar Threads Similar Threads
Reconnect.bat
06/21/2011 - General Coding - 5 Replies
Hi, Ich suche vergeblich nach einer Reconnect.bat für Speedport W 720v. Kann mir vllt. einer helfen ?
reconnect.bat?
07/22/2009 - Browsergames - 0 Replies
Hi guys. Can anyone help me how to make reconnect.bat for that hack http://www.elitepvpers.com/forum/mybrute/242497-rel ease-mybrut-bot-v1337-1-a.html
Bot für reconnect
08/18/2005 - World of Warcraft - 5 Replies
Hi, ich suche ein einfaches Script/tool welches meinen account nach einem Disconnect wieder einloggt,... Da Userdaten nun abgespeichertwerden können (log in screen) würd es reichen den Log in screen zu erkennen + ein mal enter drücken und char auswählen ,.. naja und eine Minute zu warten oder so ,.. gibts da was?



All times are GMT +2. The time now is 18:37.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.