[(Awesome)RELEASE] CoEmuv2.Nano(5095) Source Code

07/06/2009 00:47 lostso#946
hello guys
I did a lot of tutorials and when I started the Login Ang Game server, i open the game, i put the account and password and it says:


Failed to load Server.dat, please re-install the game
i dwonload CoEmu .exe and server.dat but theres some kind of propoucet that not allow for my to counncet to local host but i can put any ather ips
only when i put server ip = 127.0.0.1
sorry for my english
07/06/2009 06:25 pro4never#947
Quote:
Originally Posted by lostso View Post
hello guys
I did a lot of tutorials and when I started the Login Ang Game server, i open the game, i put the account and password and it says:


Failed to load Server.dat, please re-install the game
i dwonload CoEmu .exe and server.dat but theres some kind of propoucet that not allow for my to counncet to local host but i can put any ather ips
only when i put server ip = 127.0.0.1
sorry for my english
if you are hosting the server you have to use 127.0.0.1, you CANNOT use any other ip and be able to connect.

For anyone else to connect they have to use your external ip and the server has to be setup to allow that.


Here is an example of what you might put in login server>packetprocessor.cs

Code:
if (ServerName == "ServerName(OTHERS USE THIS")
                    {
                        if (AuthSocket.Authorize(AccountName, Key, false))
                        {
                            CSocket.Send(Packets.AuthResponse("EXTERNALIP", Key1, Key2));
                        }
                        else
                        {
                            CSocket.Disconnect();
                        }
                    }
                    else if (ServerName == "servernameLOCAL(YOU USE THIS)")
                    {
                        if (AuthSocket.Authorize(AccountName, Key, false))
                        {
                            CSocket.Send(Packets.AuthResponse("127.0.0.1", Key1, Key2));
                        }
                        else
                        {
                            CSocket.Disconnect();
                        }
                    }
There is 2 sections identical to that and a few other places to change ip but that gives you an idea.
07/06/2009 15:32 limlaw#948
hi all gurus in c#, can anyone guide where can i place the code so that xp skill will activate?
07/06/2009 21:14 felipeboladao#949
How to make Sccaters Work?
07/06/2009 22:22 lostso#950
Quote:
Originally Posted by pro4never View Post
if you are hosting the server you have to use 127.0.0.1, you CANNOT use any other ip and be able to connect.

For anyone else to connect they have to use your external ip and the server has to be setup to allow that.


Here is an example of what you might put in login server>packetprocessor.cs

Code:
if (ServerName == "ServerName(OTHERS USE THIS")
                    {
                        if (AuthSocket.Authorize(AccountName, Key, false))
                        {
                            CSocket.Send(Packets.AuthResponse("EXTERNALIP", Key1, Key2));
                        }
                        else
                        {
                            CSocket.Disconnect();
                        }
                    }
                    else if (ServerName == "servernameLOCAL(YOU USE THIS)")
                    {
                        if (AuthSocket.Authorize(AccountName, Key, false))
                        {
                            CSocket.Send(Packets.AuthResponse("127.0.0.1", Key1, Key2));
                        }
                        else
                        {
                            CSocket.Disconnect();
                        }
                    }
There is 2 sections identical to that and a few other places to change ip but that gives you an idea.
my proplam not the server the server working 100% but when i use the client with the local ip (127.0.0.1) i cant conncet to my ( server .dat ) coz the game clint rejected (and say it destroyed and game must reinstal it ) and accpet any other ip but its not working coz i host the game and i dont have anther pc to try it on ........ i think there is something worng i wana to see how i add on clint with hex editor if u know how!
07/07/2009 01:53 pro4never#951
Quote:
Originally Posted by lostso View Post
my proplam not the server the server working 100% but when i use the client with the local ip (127.0.0.1) i cant conncet to my ( server .dat ) coz the game clint rejected (and say it destroyed and game must reinstal it ) and accpet any other ip but its not working coz i host the game and i dont have anther pc to try it on ........ i think there is something worng i wana to see how i add on clint with hex editor if u know how!


That's because you have to use a modified conquer.exe file. Search this thread there have been like 5 posted.

ALSO! there is a limit on the ip length (discovered that lastnight). If you edit the server.dat and use a longer ip (even a real ip, not talking forwarded or some bs fake ip) the client will crash on opening. So much fun :P

Quote:
Originally Posted by limlaw View Post
hi all gurus in c#, can anyone guide where can i place the code so that xp skill will activate?
xp and other skills have to be coded into the source. There are currently no public releases of it. You have to be able to do it yourself. as for Xp skills there was SOME help in this thread, search through it and you will find some mentions of what packets to use and stuff. You still have to know how to code the system though using the info provided here.

Quote:
Originally Posted by felipeboladao View Post
How to make Sccaters Work?
:S maybe I'm forgetting but doesn't scatter work in coemu2? I know mine is working (half working, it's doing it as mdmg rofl...) but that's cause my skills are semi bugged atm with the addition of other new ones.
07/09/2009 23:16 iEagle#952
Alright, i got everything working fine.
But i have a few questions
If i wanted to play with a few friends over hamachi, would their server.dat be IP be 5.xxx.xxx.xxx?
and does it work over hamachi?
07/09/2009 23:21 n0mansland#953
Yes it works on hamachi your friends IP would be your hamachi IP if you want more information check my signature "Login Fix"
07/09/2009 23:46 dillhack#954
people with vista 32bit sP2 cant work this shit so please make a step by step guide for vista users
07/09/2009 23:55 danielachraf#955
Quote:
Originally Posted by n0mansland View Post
Yes it works on hamachi your friends IP would be your hamachi IP if you want more information check my signature "Login Fix"
no works on hamachi in your pc only .. friends can't connect if this is hamachi
07/10/2009 09:01 dodolinobobo#956
give me your msn or ym ,it works on hamachi and everyone can connect to your server,i had my server hamachi and works,i will help you:)
07/11/2009 16:46 Kizmiaz#957
Hello,

We're trying to get server up and can't get game server to run. (Login server works) There's an error in line 32, have searched but can't find any fixes. Any help would be appreciated :)

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

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

PS. also posted this in line 30 and 34 fix thread
07/11/2009 17:32 Beta Limit#958
Can anyone help me get this working on a 64-bit Vista computer please?

Thanks Beta
07/13/2009 04:00 as3sinas0#959
[Only registered and activated users can see links. Click Here To Register...]

WFT is that???

it happend when i try too open the server...
07/13/2009 04:12 n0mansland#960
Could be the source or the IPs try the Line 30 and 34 fix in my signature might work. Someone else had the line 31 problem on here and the fix for line 34 worked for it.