Official 5165 FAQ/Question thread

02/04/2011 21:17 .Beatz#1846
Quote:
Originally Posted by TraceLegacy View Post
First of all theres no need to close it! It's perfectly fine!
Secondly...... How do i start the guild war =} is there a command that for it?
Third How do i start the quiz show and stuff like that.
Look in the source at the commands and you will be able to find all of the commands ;)
02/06/2011 12:29 Korvacs#1847
This thread has alot of information in it, its very useful. Epvpers doesnt close threads just because they arnt updated anymore.
02/12/2011 20:50 yassine_hell#1848
hi
so i wanted to make a private server ...
i was wondering i have Co in my pc but with the last patch ... and most of the Topics here says "Guide on how to make a 5165 priavte server"
do i need another client with patch 5165 :s or i can do it with my current client?
thx
02/12/2011 21:47 .Rawr#1849
No you have to download the 5165 client... pretty obvious[Only registered and activated users can see links. Click Here To Register...]
02/14/2011 13:45 HackProvider#1850
Hey guys, I did everything okey , putted oldcodb in c:\ edited config but my problem is.
when I try to start newestcoserver.exe it says error.. and I have to close it...

im running on windows 7 64 bit, tried to replace the liberay32.dll file.. but didnt work out..

any help would be appriciated ;)

thanks
02/14/2011 22:54 yassine_hell#1851
Quote:
Originally Posted by .Rawr View Post
No you have to download the 5165 client... pretty obvious[Only registered and activated users can see links. Click Here To Register...]
yea but the problem wer can i find the 5165 client :s
and the players need the same version too?
02/15/2011 18:01 HackProvider#1852
Guys, I got everything working now. but when I created an account but when i try to log in the client crashes..

I used the default gateway Ip..
I used the Ipchicken.com Ip
I used the hamachi Ip

any suggestions? Maybe the ports? I don't know

thanks
02/15/2011 18:41 .Beatz#1853
Quote:
Originally Posted by HackProvider View Post
Guys, I got everything working now. but when I created an account but when i try to log in the client crashes..

I used the default gateway Ip..
I used the Ipchicken.com Ip
I used the hamachi Ip

any suggestions? Maybe the ports? I don't know

thanks
Please don't post your question on more than one thread it get's confusing
02/15/2011 20:28 HackProvider#1854
Im sorry.. i wont do it again, Thanks for helping, cya on my thread
02/16/2011 20:02 denominator#1855
Why does my attempt to check if a character has used DoubleExp not work? Just keeps giving DoubleExp regardless.

Code:
if (Control == 30)
                                    {   
                                        GC.MyChar.DoubleEXPUsed = DateTime.Now;
                                        GC.MyChar.DoubleExp = true;
                                        GC.MyChar.DoubleExpLeft = 3600;
                                        GC.AddSend(Packets.Status(GC.MyChar.EntityID, Status.DoubleExpTime, (ulong)GC.MyChar.DoubleExpLeft));
                                    }
                                    else if (GC.MyChar.DoubleEXPUsed == DateTime.Now)
                                    {
                                            GC.MyChar.DoubleExp = false;
                                            GC.MyChar.DoubleExpLeft = 0;
                                            Text("You have already used DoubleExp today sorry.", GC); 
                                            End(GC);
                                    }
                                    break;
                                }
                            #endregion
02/17/2011 01:00 .Beatz#1856
Look at your script carefully...

Where is the statement for asking the server is they have double exp or not?

If you cant work it out add me on msn, its very simple just look at it again
02/17/2011 02:15 TraceLegacy#1857
Quote:
Originally Posted by .Beatz View Post
Look in the source at the commands and you will be able to find all of the commands ;)
I've already checked those commands and didn't find any thing about guild war or quiz show....
02/17/2011 20:32 denominator#1858
I want to try figure it out for myself :) I thought perhaps this might work but not quite sure as to why again it fails lol.

Code:
else if (Control == 30)
                                    {

                                        GC.MyChar.DoubleEXPUsed = DateTime.Now;
                                        GC.MyChar.DoubleexpUsed++;
                                        GC.MyChar.DoubleExp = true;
                                        GC.MyChar.DoubleExpLeft = 3600;
                                        GC.AddSend(Packets.Status(GC.MyChar.EntityID, Status.DoubleExpTime, (ulong)GC.MyChar.DoubleExpLeft));
                                    }
                                    else
                                    {
                                        if (GC.MyChar.DoubleexpUsed == 1) <<---Pretty sure this is not right?
                                        {
                                            GC.MyChar.DoubleEXPUsed = DateTime.Now;
                                            GC.MyChar.DoubleExp = false;
                                            GC.MyChar.DoubleExpLeft = 0;
                                            GC.AddSend(Packets.NPCLink("You`ve already had double exp today!", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    break;
                                }
02/17/2011 22:22 kyle191#1859
Hello, I'm working on my Private Server to be Hamachi FREE!. I have Port Forwarded the following ports: 9958, 5816, 5817 for people to connect from the game and Port 80 for the website, I've even added 3306. I have someone else testing it from another computer and trying to log in but it keeps exiting the login screen window and I get an error on the console.The same thing happens to me, yes I have made my server.dat IP 127.0.0.1 and my real IP address for the person trying to connect. Also I've signed up at [Only registered and activated users can see links. Click Here To Register...] as I was reading a tutorial, I'm not sure where this comes into it. I'm using that OLDCoDB server to work on and get started. Can anyone help please.
02/17/2011 22:39 denominator#1860
Server.dat needs to be your IP

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