Register for your free account! | Forgot your password?

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

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

Advertisement



[Development] Burning Skies: Profaned Sanctuary

Discussion on [Development] Burning Skies: Profaned Sanctuary within the CO2 Private Server forum part of the Conquer Online 2 category.

Closed Thread
 
Old 12/09/2011, 14:17   #16
 
EviL|Shepherd's Avatar
 
elite*gold: 0
Join Date: Sep 2006
Posts: 248
Received Thanks: 117
Quote:
Originally Posted by Fаng View Post
I would love to see how my server stands up to a lot of players. We'll see though (I guess) when the time comes.



And I feel like I'm already doing that. I took an entire class on Asian History just for the project.
Now THAT'S dedication...
EviL|Shepherd is offline  
Old 12/09/2011, 15:50   #17
 
elite*gold: 0
Join Date: Nov 2009
Posts: 342
Received Thanks: 17
*** with you Fang!!
|xabi| is offline  
Old 12/09/2011, 16:00   #18
 
F i n c h i's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 785
Received Thanks: 421
Hope you'll not give up again.
Good luck, Gareth.
F i n c h i is offline  
Old 12/09/2011, 16:08   #19


 
KraHen's Avatar
 
elite*gold: 0
Join Date: Jul 2006
Posts: 2,216
Received Thanks: 793
Did it really take a day to code character creation? o.o
KraHen is offline  
Old 12/09/2011, 20:50   #20
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by KraHen View Post
Did it really take a day to code character creation? o.o
Well, it's all about organization and planning. Anyone who ever wanted to read my Character Creation file wouldn't have a hard time doing so. My girlfriend (who knows nothing about programming) was able to read it and get a really good understanding from it.
Spirited is offline  
Old 12/09/2011, 21:01   #21
 
12k's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 218
Received Thanks: 33
Eh, it can take that long. Adding comments next to everything, giving each param definitions and comments, etc.
12k is offline  
Old 12/09/2011, 21:12   #22
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by 12k View Post
Eh, it can take that long. Adding comments next to everything, giving each param definitions and comments, etc.
Well, adding comments isn't exactly what's taking so long. It does take up a little time to document it all correctly, but not nearly as much time is it takes for me to come up with the actual solutions.
Spirited is offline  
Old 12/09/2011, 21:38   #23


 
KraHen's Avatar
 
elite*gold: 0
Join Date: Jul 2006
Posts: 2,216
Received Thanks: 793
And your girlfriend being able to read it benefits your project how?
KraHen is offline  
Old 12/09/2011, 21:42   #24
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by KraHen View Post
And your girlfriend being able to read it benefits your project how?
A month from now, if I need to go back and change something, I don't have to spend a lot of time trying to figure out what the hell I was doing. =p Big projects like this need to be documented properly. I don't want to get lost in my own project.
Spirited is offline  
Old 12/09/2011, 21:53   #25
 
12k's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 218
Received Thanks: 33
eh, just a good naming convention, and the ability to right click->Go To Definition does the that job for me haha
12k is offline  
Thanks
1 User
Old 12/09/2011, 22:04   #26
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by 12k View Post
eh, just a good naming convention, and the ability to right click->Go To Definition does the that job for me haha
Well, I just tested that by reading my Append Login & Authenticate Response voids - it took me a good few seconds to read it all. Then I re-read it by only reading the comments and skimming through the code. Took me half a second at the most. I guess it's just a preference of mine.
Spirited is offline  
Old 12/09/2011, 22:24   #27
 
Lateralus's Avatar
 
elite*gold: 0
Join Date: May 2005
Posts: 1,892
Received Thanks: 918
Quote:
Originally Posted by KraHen View Post
And your girlfriend being able to read it benefits your project how?
Probably the most ignorant and incorrect implication ever.
Lateralus is offline  
Old 12/09/2011, 22:27   #28
 
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
Quote:
Originally Posted by KraHen View Post
And your girlfriend being able to read it benefits your project how?
The real question is.

And your girlfriend is reading your code and not making you sandwiches?
BaussHacker is offline  
Old 12/09/2011, 22:43   #29
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by Lateralus View Post
Probably the most ignorant and incorrect implication ever.
It's extremely important to document your code. You're ignorant if you think that me documenting my code is an ignorant action.

(I don't read these tutorials, but I found this on google which states the reasons why I document my code):
Spirited is offline  
Old 12/09/2011, 22:50   #30
 
Lateralus's Avatar
 
elite*gold: 0
Join Date: May 2005
Posts: 1,892
Received Thanks: 918
Quote:
Originally Posted by Fаng View Post
It's extremely important to document your code. You're ignorant if you think that me documenting my code is an ignorant action.

(I don't read these tutorials, but I found this on google which states the reasons why I document my code):
You're ignorant if you think I was bashing documentation. I'm extremely pro-documentation and it's essential to document everything if you're in a team project.

Here's a snippet of my documentation of a subtype of packet 1010/10010.

/// <summary>
/// Sent client->server when a player requests a teammate's position. Server responds with the requested information.
/// (client->server) entityUID = requestedCharacterUID, ValueD = requestedCharacterUID.
/// (server->client) entityUID = characterUID, ValueA = requestedXcoordinate, ValueB = requestedYcoordinate, ValueD = requestedCharacterUID.
/// </summary>
RequestTeammatePosition = 0xA6,

There's no way in hell I'm going to memorize this or navigate through my code figuring out this information every time I need it, rather than simply putting the information right here in an XML comment. No thank you.
Lateralus is offline  
Closed Thread


Similar Threads Similar Threads
Falling Skies Staffel 1 ?!
12/20/2011 - Off Topic - 2 Replies
Heyho, Und zwar habe ich bisher keine Folge von falling Skies gesehen, die 1. Staffel scheint ja nun zuende zu sein, weiß jemand wo man sie sich herunterladen kann? Wäre toll wenn mir jemand helfen könnte ;) PS: ich bin mir nicht sicher ob ich danach Fragen kann, also wegen Download link, bzw. Download Quelle, ich bitte um Entschuldigung wenn dies verboten ist..... Aber bitte schreibt es mir in den Thread oder per PN wenn dies verboten ist!
PWI Sanctuary Account
11/25/2010 - elite*gold Trading - 0 Replies
This is a redirect from my original post. I will accept Elite*Gold offers once I have it appraised (time to troll the forum) Perfect World Sanctuary Account if you hold the power to move my original thread here, please do so, I don't mean to spam.



All times are GMT +2. The time now is 02:42.


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.