Can't get the server to be online Conquer-SX V8 Help!!

04/16/2011 02:14 BlackCitadel#1
Hello,

I set up everything right as exacty as in the guide picked up from 4botters,
I typed in my Hamachi IP in config.ini , Server.dat, World.cs , and Program.cs

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]

And then when I get into server it says this message:-
[Only registered and activated users can see links. Click Here To Register...]
04/16/2011 12:06 Secured#2
Why the fuck you have a class inside a class?
04/16/2011 18:12 BlackCitadel#3
Where is that class? I didn't modify any class in C# I downloaded the source and client from Multiupload , link in 4botters website.

So, who would help me solve this?!
04/16/2011 19:07 { Angelius }#4
Delete that region in the very first Screen shoot from where it says #region to #endregion

you dont need it cus all you need is the config file info to be correct ,

ps. that source is shitty but if you wanna use it any way i suggest to change the socket system cus it sucks really bad if not than you really need to move on to something new thought :P

try the new patches .

Good Luck.
04/16/2011 19:51 Secured#5
Quote:
Originally Posted by { Angelius } View Post
Delete that region in the very first Screen shoot from where it says #region to #endregion

you dont need it cus all you need is the config file info to be correct ,

ps. that source is shitty but if you wanna use it any way i suggest to change the socket system cus it sucks really bad if not than you really need to move on to something new thought :P

try the new patches .

Good Luck.
The socket system is not the thing that's wrong, but the way the source is handling everything. Just some small tweaks in the socket system and the way it handles things like auth and gameclient, then it's fine. The problem in the source is the way everything is coded. It's sloppy and contains a lot garbage codes that's not needed.
04/16/2011 20:36 fotis007#6
go in connection.cs and find
Code:
XYNetCommon.SetSocketPermission();
Listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
and replace it with
Code:
IPAddress ipAddress = IPAddress.Parse(m_sAddress);
XYNetCommon.SetSocketPermission();
Listener = new Socket(ipAddress.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
i think that ill fix ur error xDD
04/16/2011 21:59 Secured#7
The problem is happening due to binding 2 sockets on same port.
04/16/2011 23:16 BlackCitadel#8
Quote:
Originally Posted by fotis007 View Post
go in connection.cs and find
Code:
XYNetCommon.SetSocketPermission();
Listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
and replace it with
Code:
IPAddress ipAddress = IPAddress.Parse(m_sAddress);
XYNetCommon.SetSocketPermission();
Listener = new Socket(ipAddress.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
i think that ill fix ur error xDD
Yes, that solved the problem, but still can't get into server, look at the picture:-

[Only registered and activated users can see links. Click Here To Register...]
04/17/2011 00:19 fotis007#9
hmm check ur ports in loader and make every ip ur hamachi ip i think that ill work =]]
04/17/2011 01:06 BlackCitadel#10
check your ports in loader??? where is that?? Do you mean ConquerLoader?
04/17/2011 02:08 fotis007#11
yes in client
try
LoginPort=9959
GamePort=5816
and
LoginPort=9960
GamePort=5816
04/17/2011 02:50 BlackCitadel#12
OK I tried that, but no work as well, but the waiting time when I click Enter to login and the message that says Server maintenance has decreased, but still can't get into server, I typed my hamachi IP as well, and tried what you said I also typed in LoaderSet.ini :

LoginPort=9959
GamePort=5816
and
LoginPort=9960
GamePort=5816
04/17/2011 05:36 kill_acvc#13
Quote:
Originally Posted by BlackCitadel View Post
OK I tried that, but no work as well, but the waiting time when I click Enter to login and the message that says Server maintenance has decreased, but still can't get into server, I typed my hamachi IP as well, and tried what you said I also typed in LoaderSet.ini :

LoginPort=9959
GamePort=5816
and
LoginPort=9960
GamePort=5816
... Just looking at your source code I figured out what's wrong. Try :
Login port : 9958
Game port : 5816

Should work.

There it goes:

[Only registered and activated users can see links. Click Here To Register...]
04/17/2011 05:49 BlackCitadel#14
I tried that, still no luck.

Should I keep running Navicat for the server to work???

But I tried it while running Navicat and while not running it, not working too, damn my head is confused,
What's that!!! Hamachi, Navicat!!!

Please, anyone tell me any better source that work without Navicat and easy to set up, I will never use Conquer-Sx!!!!
04/17/2011 06:09 { Angelius }#15
Quote:
Originally Posted by Secured View Post
The socket system is not the thing that's wrong, but the way the source is handling everything. Just some small tweaks in the socket system and the way it handles things like auth and gameclient, then it's fine. The problem in the source is the way everything is coded. It's sloppy and contains a lot garbage codes that's not needed.
the idiot that changed/edited the socket system changed its settings to capture/pull the local M ip address (a static ip address) and that is not gonna be the hamachi ip for sure .(you well never be able to login unless if you have a static ip)

and btw hes problem atm is the socket system he dident suffer with the other bad coding stuff yet :xD

so yes i woldent say that the SS is not the problem :S