Official 5165 FAQ/Question thread

04/28/2010 17:53 greasontim#1291
seeing how im useing Hamachi and never used Appserv or Navicat um how would i set that up?
Just wondering cause my friend dont want to have to get Hamachi to host my server for me
04/28/2010 20:36 Xboxliv321#1292
Ok, Well, Mine Was Working Perfect, Then , It Opens, Says Some Writing Real Quick, Then Closes, Why Is This? Private Message Me Please? It Will Be Appreciated, Thanks Alot !
04/29/2010 04:12 vithanhlam#1293
More add monsters to help her lap 1 2 3 4 , thanks
04/29/2010 12:19 Adziunia#1294
Quote:
Ok, Well, Mine Was Working Perfect, Then , It Opens, Says Some Writing Real Quick, Then Closes, Why Is This? Private Message Me Please? It Will Be Appreciated, Thanks Alot !
Open it with Microsoft visual C# and check whats wrong
Quote:
seeing how im useing Hamachi and never used Appserv or Navicat um how would i set that up?
Just wondering cause my friend dont want to have to get Hamachi to host my server for me
guys for this server u DONT need a navicat. About hamachi if he doeasnt have his own external ip or his ip is changing everyday he should use hamachi or get external ip that doesnt change every day the other way is to get dedicated server. With Appserver its easy download, install set the password, put the pass into config.ini, put ur website into Appserv/www/ and thats it
Quote:
fadriz
u can use my vip seller :P u can edit him easly heres it
Quote:
#region Vip Seller by Adzio
case 30162:
{
if (Control == 0)
{
GC.AddSend(Packets.NPCSay("Wanna be a VIP? Each lvl wil cost ore cps xD"));
GC.AddSend(Packets.NPCLink("Yes please", 1));
GC.AddSend(Packets.NPCLink("No thanks.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
if (Control == 1)
{
GC.AddSend(Packets.NPCSay("Ok now choose the lvl u wanna to buy"));
GC.AddSend(Packets.NPCLink("1 lvl =100k cps", 2));
GC.AddSend(Packets.NPCLink("2 lvl =200k cps", 3));
GC.AddSend(Packets.NPCLink("3 lvl =300k cps", 4));
GC.AddSend(Packets.NPCLink("4 lvl =400k cps", 5));
GC.AddSend(Packets.NPCLink("5 lvl =500k cps", 6));
GC.AddSend(Packets.NPCLink("6 lvl =800k cps", 7));
GC.AddSend(Packets.NPCLink("7 lvl =1kk cps", 8));
GC.AddSend(Packets.NPCLink("No thanks.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
else if (Control == 2)
{
if (GC.MyChar.CPs >= 100000)
{
GC.MyChar.CPs -= 100000;
GC.MyChar.VipLevel = 1;
GC.MyChar.AddItem(723745);
GC.AddSend(Packets.NPCSay("Here u r, now enjoy with Vip status"));
GC.AddSend(Packets.NPCLink("Yeah thx a lot", 9));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
else
{
GC.AddSend(Packets.NPCSay("You don't have enough CPs!"));
GC.AddSend(Packets.NPCLink("I see.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
}
else if (Control == 3)
{
if (GC.MyChar.CPs >= 200000)
{
GC.MyChar.CPs -= 200000;
GC.MyChar.VipLevel = 2;
GC.MyChar.AddItem(723746);
GC.AddSend(Packets.NPCSay("Here u r, now enjoy with Vip status"));
GC.AddSend(Packets.NPCLink("Yeah thx a lot", 9));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
else
{
GC.AddSend(Packets.NPCSay("You don't have enough CPs!"));
GC.AddSend(Packets.NPCLink("I see.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
}
else if (Control == 4)
{
if (GC.MyChar.CPs >= 300000)
{
GC.MyChar.CPs -= 300000;
GC.MyChar.VipLevel = 3;
GC.MyChar.AddItem(723747);
GC.AddSend(Packets.NPCSay("Here u r, now enjoy with Vip status"));
GC.AddSend(Packets.NPCLink("Yeah thx a lot", 9));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
else
{
GC.AddSend(Packets.NPCSay("You don't have enough CPs!"));
GC.AddSend(Packets.NPCLink("I see.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
}
else if (Control == 5)
{
if (GC.MyChar.CPs >= 400000)
{
GC.MyChar.CPs -= 400000;
GC.MyChar.VipLevel = 4;
GC.MyChar.AddItem(723748);
GC.AddSend(Packets.NPCSay("Here u r, now enjoy with Vip status"));
GC.AddSend(Packets.NPCLink("Yeah thx a lot", 9));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
else
{
GC.AddSend(Packets.NPCSay("You don't have enough CPs!"));
GC.AddSend(Packets.NPCLink("I see.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
}
else if (Control == 6)
{
if (GC.MyChar.CPs >= 500000)
{
GC.MyChar.CPs -= 500000;
GC.MyChar.VipLevel = 5;
GC.MyChar.AddItem(723749);
GC.AddSend(Packets.NPCSay("Here u r, now enjoy with Vip status"));
GC.AddSend(Packets.NPCLink("Yeah thx a lot", 9));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
else
{
GC.AddSend(Packets.NPCSay("You don't have enough CPs!"));
GC.AddSend(Packets.NPCLink("I see.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
}
else if (Control == 7)
{
if (GC.MyChar.CPs >= 800000)
{
GC.MyChar.CPs -= 800000;
GC.MyChar.VipLevel = 6;
GC.MyChar.AddItem(723750);
GC.AddSend(Packets.NPCSay("Here u r, now enjoy with Vip status"));
GC.AddSend(Packets.NPCLink("Yeah thx a lot", 9));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}

else
{
GC.AddSend(Packets.NPCSay("You don't have enough CPs!"));
GC.AddSend(Packets.NPCLink("I see.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
}
else if (Control == 8)
{
if (GC.MyChar.CPs >= 1000000)
{
GC.MyChar.CPs -= 1000000;
GC.MyChar.VipLevel = 7;
GC.MyChar.AddItem(723750);
GC.Message(2005, GC.MyChar.Name + "Now became an 7 lvl VIP and also has won the Skill as special reward Congratulations");
GC.MyChar.RWSkill(new Game.Skill() { ID = 7001, Lvl = 0, Exp = 0 });
GC.AddSend(Packets.NPCSay("Here u r, now enjoy with Vip status"));
GC.AddSend(Packets.NPCLink("Yeah thx a lot", 9));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
else
{
GC.AddSend(Packets.NPCSay("You don't have enough CPs!"));
GC.AddSend(Packets.NPCLink("I see.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
}

break;
}
#endregion
05/01/2010 07:08 SagabDarkness#1295
I'm getting the cant find database cannot start server when I open NewestCoServer... it's in the c drive..anyone know what the heck is going on?
05/01/2010 08:03 greasontim#1296
Source goes anywhere,
OldCOB or something like that goes in your C Drive as the server
put in IPs and there you go
05/02/2010 18:57 angelwings#1297
wheres chat.cs?
05/02/2010 23:56 greasontim#1298
Source Folder > Game > chat.cs
thats where it is
05/06/2010 06:44 Omni-?#1299
Ok too many pages for me to look through them all so if this has been asked before I apologize. I am starting my own p serv just to mess around on and practice running. I am positive that I have everything set the way it should be, ip's changed in all places to my ip, etc. MySQL connects just fine even though it took me ages to do it, lol. But my server won't connect at all. I try to log in and after a pause it says Server Maintenance or network congested. Try again later. It doesn't even bring up the loading bar or anything. Not sure what is wrong, maybe one of you can help. Thanks


Edit-

Just thought of something that I have heard several times. Is it possible that I need a hacked server.dat to get my server to run? Or did I "hack" it by setting the server ip to my ip, etc...?
05/08/2010 20:45 Adziunia#1300
Quote:
But what is a MySQL Password and how can i get 1, can u help me plz? =0
I tried to install NaviCat or MySQL, but i got no idea how to set it up and for what it is good? :(
Install Appserv while u will be installing it u will set a password. That password put into config.ini as mysql pass :)

Quote:
Omni-?
i think u made wrong/edited server.dat in client ;p paste row 101 here
05/09/2010 20:27 LetsGo42#1301
I got this Problem...
Ok so i downloaded the 5165 Source and 5165 Client
and installed AppServ and Navicat MySQL
Then i opened the Folder "Fixed Source" and place the Folder "OldCODB" in m< C:/ Drive
In OldCODB i opened up the Config.ini and changed it to my Settings (look my Screenshot)

Then I opened up Navicat
I created a new Connection, choosed for the Server Name "localhost"
and typed in the Password, which i used for Appserv
Then i clicked OK and double clicked on localhost
It turned green

I opened my DarkSideCO Client
and opended the File "Server", then
i changed the IP to my own

Then i went back to my "Fixed Source" File and opened rikardo updated\bin\Debug and double clicked NewestCOServer.exe.
I Ran it and a Command Script popped up,
Now i putted in a Username and a Password
("/newacc test 123")

The i went into my DarkSideCO Client and opended the "Conquer.exe"
It popped up and i could log in, so i tried to sign in with my username and pw
(test 123)
But i couldnt see the Loading Bar and the Message "Server Maintenance or Network Congested. Try again later." popped up

Check my Screenshot for the Informations!, if i did all right plz

I hope u can help me:(

[Only registered and activated users can see links. Click Here To Register...]
05/09/2010 21:04 sneaky06#1302
Quote:
Originally Posted by LetsGo42 View Post
I got this Problem...
Ok so i downloaded the 5165 Source and 5165 Client
and installed AppServ and Navicat MySQL
Then i opened the Folder "Fixed Source" and place the Folder "OldCODB" in m< C:/ Drive
In OldCODB i opened up the Config.ini and changed it to my Settings (look my Screenshot)

Then I opened up Navicat
I created a new Connection, choosed for the Server Name "localhost"
and typed in the Password, which i used for Appserv
Then i clicked OK and double clicked on localhost
It turned green

I opened my DarkSideCO Client
and opended the File "Server", then
i changed the IP to my own

Then i went back to my "Fixed Source" File and opened rikardo updated\bin\Debug and double clicked NewestCOServer.exe.
I Ran it and a Command Script popped up,
Now i putted in a Username and a Password
("/newacc test 123")

The i went into my DarkSideCO Client and opended the "Conquer.exe"
It popped up and i could log in, so i tried to sign in with my username and pw
(test 123)
But i couldnt see the Loading Bar and the Message "Server Maintenance or Network Congested. Try again later." popped up

Check my Screenshot for the Informations!, if i did all right plz

I hope u can help me:(

[Only registered and activated users can see links. Click Here To Register...]
Hey in Server .dat what ip did you do and same on Config what ip did you use .
You have to put (you're hamachi ip in Config.ini and in server.dat)

Press thanks if helped!!!
05/09/2010 23:19 Adziunia#1303
Quote:
Originally Posted by LetsGo42 View Post
I got this Problem...
Ok so i downloaded the 5165 Source and 5165 Client
and installed AppServ and Navicat MySQL
Then i opened the Folder "Fixed Source" and place the Folder "OldCODB" in m< C:/ Drive
In OldCODB i opened up the Config.ini and changed it to my Settings (look my Screenshot)

Then I opened up Navicat
I created a new Connection, choosed for the Server Name "localhost"
and typed in the Password, which i used for Appserv
Then i clicked OK and double clicked on localhost
It turned green

I opened my DarkSideCO Client
and opended the File "Server", then
i changed the IP to my own

Then i went back to my "Fixed Source" File and opened rikardo updated\bin\Debug and double clicked NewestCOServer.exe.
I Ran it and a Command Script popped up,
Now i putted in a Username and a Password
("/newacc test 123")

The i went into my DarkSideCO Client and opended the "Conquer.exe"
It popped up and i could log in, so i tried to sign in with my username and pw
(test 123)
But i couldnt see the Loading Bar and the Message "Server Maintenance or Network Congested. Try again later." popped up
1st Uinstall Navicat u should notice that in the guide theres no words about navicat etc. 2nd make another account like /newacc Admin test [PM] i think ur pass is to short. 3rd maybe firewall or antyvirus is blocking game or server. If u still cant login i can help u by TV

About serevr.dat ips must be the same as in config.ini if u havnt external ip or u have router then u need hamachi.
05/10/2010 08:06 Axe4Hire#1304
i have same issue as with LetsGo42 except i have hamachi all installed and ip adress is same in Config.ini and server.dat i followed all the instructions but i get the error message "Server Maintenance or Network Congested. Try again later."

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


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

those are what i got to show if you have any info on how to fix it plz say and if you need more info i will be on tomorrow time for bed now >.>
05/10/2010 12:18 .Summer#1305
did you write /newacc?