Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 06:50

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

Advertisement



Windows 7, XP or Vista?

Discussion on Windows 7, XP or Vista? within the CO2 Private Server forum part of the Conquer Online 2 category.

View Poll Results: How OS is best to use for making a Private Server?
Windows 7 6 85.71%
Windows XP 0 0%
Windows Vista 1 14.29%
Voters: 7. You may not vote on this poll

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2011
Posts: 28
Received Thanks: 0
Question Windows 7, XP or Vista?

Hello

What is the most stable OS to use for making a server?
Or the best one?

And if using Windows 7 64Bit, what 5165 source is best?(just for me and some friends)

-Thanks in advance!
Galyrion is offline  
Old 03/02/2013, 16:34   #2
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
Windows Server.

If not possible then Windows 8.

If not possible then Windows 7.

If not possible then none.
Super Aids is offline  
Old 03/02/2013, 19:15   #3
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,377
Windows 7 for home computers (windows 8 is ****, vista is ****, xp is outdated)

There's no reason to use a home operating system though on a dedicated server/vps. It will always be running a server OS unless you're buying your hosting from some shady as **** company or installing it yourself.

Not sure why you're asking though... it's not even a question
pro4never is offline  
Old 03/02/2013, 19:54   #4
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
Quote:
Originally Posted by pro4never View Post
Windows 7 for home computers (windows 8 is ****, vista is ****, xp is outdated)

There's no reason to use a home operating system though on a dedicated server/vps. It will always be running a server OS unless you're buying your hosting from some shady as **** company or installing it yourself.

Not sure why you're asking though... it's not even a question
Have you ever used Windows 8? It's ******* brilliant.

Have some benchmarking.
Super Aids is offline  
Old 03/02/2013, 21:53   #5
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,377
Quote:
Originally Posted by Super Aids View Post
Have you ever used Windows 8? It's ******* brilliant.

Have some benchmarking.
I do phone tech support. I'm bitter and refuse to give it any credit.

Simple compatibility issues and differences between it and old OS' is enough reason for me to remain bitter until Microsoft throws out something worth using again.
pro4never is offline  
Old 03/02/2013, 22:36   #6
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
I have had no compatibility problems at all, except for SQL Server 2008 not working, but 2012 working. Everything else that I have installed works fine and it goes from games, Steam, IDE's, compilers to other applications like Photoshop, Fl Studio, Firefox, Opera, Chrome etc.

Also I've had no problems with drivers either or new devices like USB's, Pen tablets, mouse, keyboard etc.

Not sure what compatibility problems you're speaking off, but to me it sounds more like your personal opinion, rather than facts.
Super Aids is offline  
Old 03/02/2013, 23:56   #7
 
elite*gold: 0
Join Date: Apr 2011
Posts: 28
Received Thanks: 0
Quote:
Originally Posted by pro4never View Post
Windows 7 for home computers (windows 8 is ****, vista is ****, xp is outdated)

There's no reason to use a home operating system though on a dedicated server/vps. It will always be running a server OS unless you're buying your hosting from some shady as **** company or installing it yourself.

Not sure why you're asking though... it's not even a question
I am running WIN 7 64bit and have this problem..
NewestCOServer has stopped working...
I know you will say it's a crappy source, but for about a year ago, i had it working! And now i desided to try it out again..
I changed Libeay32.dll to the 64bit one, and the config.ini is correct!
Why? :O
Galyrion is offline  
Old 03/03/2013, 00:02   #8
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
Try change the project to 32 bit.
Super Aids is offline  
Old 03/03/2013, 00:10   #9
 
elite*gold: 0
Join Date: Apr 2011
Posts: 28
Received Thanks: 0
Quote:
Originally Posted by Super Aids View Post
Try change the project to 32 bit.
I did, it's error in line 82 Program.cs
and the line is:
Code:
DropRates.Load();
How can that be wrong?
And when i press F5 to Debug, i get error here:
Code:
return double.Parse(IVS.Value);
I have net framework 4.0 installed!

All i did was:
1: Put source in C:\
2. Edit config.ini (hamachi ip, and root password)
Galyrion is offline  
Old 03/03/2013, 00:38   #10
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
What error do you get?
Super Aids is offline  
Old 03/03/2013, 00:57   #11
 
elite*gold: 0
Join Date: Apr 2011
Posts: 28
Received Thanks: 0
Quote:
Originally Posted by Super Aids View Post
What error do you get?
When i open up the "NewestCOServer.exe" in: C:\rikardo updated\bin\Debug
I get a black window with no text, and a messagebox: "NewestCOServer has stopped working..."

When i debug(F5) in C# i get this:

return double.Parse(IVS.Value);
- Input string was not in a correct format.

Here is the full code:
Code:
public double ReadDouble(string Section, string Key)
        {
            string section = "[" + Section + "]";
            IniSectionStructure ISS = null;
            Sections.TryGetValue(section, out ISS);
            if (ISS != null)
            {
                IniValueStructure IVS = null;
                ISS.Variables.TryGetValue(Key, out IVS);
                if (IVS != null)
                    return double.Parse(IVS.Value);
            }
            return 0;
        }
Does anyone got a clean 5165 source?(Not edited)
Galyrion is offline  
Old 03/03/2013, 01:08   #12
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
Try change it to:
Code:
public double ReadDouble(string Section, string Key)
        {
            double ret = 0;
            string section = "[" + Section + "]";
            IniSectionStructure ISS = null;
            Sections.TryGetValue(section, out ISS);
            if (ISS != null)
            {
                IniValueStructure IVS = null;
                ISS.Variables.TryGetValue(Key, out IVS);
                if (IVS != null)
                    double.TryParse(IVS.Value, out ret);
            }
            return ret;
        }
Super Aids is offline  
Thanks
1 User
Old 03/03/2013, 01:13   #13
 
elite*gold: 0
Join Date: Apr 2011
Posts: 28
Received Thanks: 0
Quote:
Originally Posted by Super Aids View Post
Try change it to:
Code:
public double ReadDouble(string Section, string Key)
        {
            double ret = 0;
            string section = "[" + Section + "]";
            IniSectionStructure ISS = null;
            Sections.TryGetValue(section, out ISS);
            if (ISS != null)
            {
                IniValueStructure IVS = null;
                ISS.Variables.TryGetValue(Key, out IVS);
                if (IVS != null)
                    double.TryParse(IVS.Value, out ret);
            }
            return ret;
        }
Hmm.. FYI!
I'm not gay, but i freakin' LOVE you!<3

Thanks! :-)
-----------------------------------------------------------
EDIT: Having a problem where other people can't join!
I have to PC's!

PC 1. Hold the server(Where to source is)
PC 2. Use to play on the server

They are on same Hamachi room, and i changed the IP correct..
-----------------------------------------------------------
When i am going to login on PC2, i get: "Server maintenace or network congested. Try again later"
When i am going to login on PC1, it works...

BUT

When i use PC2 as the server, and i try login on PC1, it works
I works to host the server on PC 2 but not PC 1, why not? ;o
I am 100% sure that the ip's are correct

-----------------------------------------------------------

They both use the exact same client.
Anyone have an idea?
Galyrion is offline  
Old 03/03/2013, 03:23   #14
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,377
Quote:
Originally Posted by Super Aids View Post
I have had no compatibility problems at all, except for SQL Server 2008 not working, but 2012 working. Everything else that I have installed works fine and it goes from games, Steam, IDE's, compilers to other applications like Photoshop, Fl Studio, Firefox, Opera, Chrome etc.

Also I've had no problems with drivers either or new devices like USB's, Pen tablets, mouse, keyboard etc.

Not sure what compatibility problems you're speaking off, but to me it sounds more like your personal opinion, rather than facts.
They arbitrarily changed the organization of virtually all of the menus while leaving everything behind the scenes unchanged.

Context based menu options means it's very difficult to blindly walk people through menus because they could end up with different options than you dependent on what program/window they are currently on.

Forced setup of a microsoft mail account which confuses/annoys many customers

Default IMAP mail setup causing people to completely lose their **** when their other computer pops the mailbox and pulls out all the mail.



I could go on and on. It's a ***** to walk people through, the interface is clunky and the features are for the most part useless.

There's really no reason to switch. Mediocre performance gains mean nothing to home users and no serious host would EVER host a server using a home OS so the point is quite moot.
pro4never is offline  
Old 03/03/2013, 03:30   #15
 
nTL3fTy's Avatar
 
elite*gold: 0
Join Date: Jun 2005
Posts: 692
Received Thanks: 353
Quote:
Originally Posted by Galyrion View Post
...
At least use the TryGetValue method properly.
Code:
public double ReadDouble(string Section, string Key)
        {
            string section = "[" + Section + "]";
            IniSectionStructure ISS;
            if (Sections.TryGetValue(section, out ISS))
            {
                IniValueStructure IVS;
                if (ISS.Variables.TryGetValue(Key, out IVS))
                    return double.Parse(IVS.Value);
            }
            return 0;
        }
nTL3fTy is offline  
Closed Thread

Tags
os, server, vista, win7, xp


Similar Threads Similar Threads
PHO_Naked Chams v1 Windows7,Windows XP,Windows Vista working Free Download!!!
01/07/2013 - Soldier Front Hacks, Bots, Cheats & Exploits - 5 Replies
Windows 7 32-bit = working 64-bit = working Windows XP = Not Working Windows Vista = Not Working Features Auto On= Naked



All times are GMT +2. The time now is 06:50.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

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