Register for your free account! | Forgot your password?

You last visited: Today at 16:10

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

Advertisement



[Dev] Perfect CO 5017

Discussion on [Dev] Perfect CO 5017 within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old 09/19/2010, 18:05   #16

 
jackpotsvr's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 328
Received Thanks: 43
Quote:
Originally Posted by Sion~ View Post
2nd. You can also further the system in many ways, such as 1) special auras, making them a ghost when afk and allot more.
Ow and about that, its also possible with my current system shall i show you a pic? Just one line of code
jackpotsvr is offline  
Old 09/19/2010, 22:24   #17
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,765
Received Thanks: 382
I would suggest you just use hybrids source, if ur going to make the "perfect co 5017".
As it is more stable, is bugless and you will learn alot from it.
Fish* is offline  
Old 09/19/2010, 23:16   #18

 
jackpotsvr's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 328
Received Thanks: 43
Quote:
Originally Posted by Fish* View Post
I would suggest you just use hybrids source, if ur going to make the "perfect co 5017".
As it is more stable, is bugless and you will learn alot from it.
Possible.. But the thing on my mind is.. Isn't it such good source with evertything implented what you even dan't dream?? Cause im a person that wants too add things , fix bugs, etc etc. I never worked with that source..

*sorry if i made typos im on mobile phone *
jackpotsvr is offline  
Old 09/19/2010, 23:28   #19
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,783
Received Thanks: 5,304
Quote:
Originally Posted by jackpotsvr View Post
Possible.. But the thing on my mind is.. Isn't it such good source with evertything implented what you even dan't dream?? Cause im a person that wants too add things , fix bugs, etc etc. I never worked with that source..

*sorry if i made typos im on mobile phone *
On the contrary, hybrids source has nearly nothing in it except for login, and basic functions.
Arcо is offline  
Thanks
2 Users
Old 09/20/2010, 00:52   #20
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,765
Received Thanks: 382
Quote:
Originally Posted by jackpotsvr View Post
Possible.. But the thing on my mind is.. Isn't it such good source with evertything implented what you even dan't dream?? Cause im a person that wants too add things , fix bugs, etc etc. I never worked with that source..

*sorry if i made typos im on mobile phone *
as arco said above there is nothing really in the source.
But is awsome if u want to develope something on that patch.
For me features are not making a source good, but the way is structured.
If u want to learn, then hybrids source is good for it, since u have to add things by ur self.
Fish* is offline  
Old 09/20/2010, 04:31   #21
 
ImFlamedCOD's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 378
Received Thanks: 141
Why reinvent the wheel when you can just improve on whats already there. Tho something maybe **** you can turn it into gold. Literally speaking you have a farm like my grandparents you sell cow manure to farms for crops and boom profit. Just an example of **** being gold.
ImFlamedCOD is offline  
Thanks
1 User
Old 09/25/2010, 22:45   #22

 
jackpotsvr's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 328
Received Thanks: 43
Heya,, i was busy for a while!
I'll go on with this project for a while,,Maybe later i'll go to Hybrids source...

Sorry had a real busy week at school. Today i added day, evening, night to my source, yet it still with command, ill add timer later
Screenshots
jackpotsvr is offline  
Old 09/25/2010, 22:53   #23
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,783
Received Thanks: 5,304
Quote:
Originally Posted by jackpotsvr View Post
Heya,, i was busy for a while!
I'll go on with this project for a while,,Maybe later i'll go to Hybrids source...

Sorry had a real busy week at school. Today i added day, evening, night to my source, yet it still with command, ill add timer later
Screenshots
Add me on msn and I'll give you a timer for it.
Arcо is offline  
Thanks
1 User
Old 09/26/2010, 00:01   #24


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,445
Received Thanks: 1,176
If you want something realistic and based on the time, here a function.

C = -191/144(T - 12)^2 + 255

Little example:
Code:
Double Time = DateTime.Now.Hour + (Double)(DateTime.Now.Minute / 60);
Byte Color = (Byte)((-191 / 144) * Math.Pow((Time - 12), 2) + 255);
UInt32 RealColor = (UInt32)((Color << 16) | (Color << 8) | Color);
CptSky is offline  
Thanks
2 Users
Old 09/26/2010, 01:01   #25

 
jackpotsvr's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 328
Received Thanks: 43
Quote:
Originally Posted by CptSky View Post
If you want something realistic and based on the time, here a function.

C = -191/144(T - 12)^2 + 255

Little example:
Code:
Double Time = DateTime.Now.Hour + (Double)(DateTime.Now.Minute / 60);
Byte Color = (Byte)((-191 / 144) * Math.Pow((Time - 12), 2) + 255);
UInt32 RealColor = (UInt32)((Color << 16) | (Color << 8) | Color);
Ah i see.. I'll try add it tomorow, only problem is, the morning i want too start little blueish, tha more orange (sunish) like in real. I'll add weather soon too.
jackpotsvr is offline  
Old 09/26/2010, 02:22   #26


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,445
Received Thanks: 1,176
Quote:
Originally Posted by jackpotsvr View Post
Ah i see.. I'll try add it tomorow, only problem is, the morning i want too start little blueish, tha more orange (sunish) like in real. I'll add weather soon too.
I will try to make a new function with your request.
CptSky is offline  
Thanks
1 User
Old 09/26/2010, 15:00   #27

 
jackpotsvr's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 328
Received Thanks: 43
Quote:
Originally Posted by Аrco View Post
Add me on msn and I'll give you a timer for it.
I've added you (hint* my real name is Thomas so you know thats me)

**
Atm im resizing pics so they become 3 times smaller, otherwise i go above my montly space

lol i saw at some of my screenshot it says Legends return (upperdown-right of some screenshots) This was a client edit, im using 5017
jackpotsvr is offline  
Reply


Similar Threads Similar Threads
[RELEASE]Big Project..5095,5065,5017,5017 (command Server)
10/01/2009 - CO2 PServer Guides & Releases - 23 Replies
Hi, Yes i made a big project with my self by my self i host i edit i control i code. The Project contain 3 Co plvling Servers and 1 Command server the plvling servers are Snow Server and Treasure island . snow server works with 5065 client and it have alot of edits , adds , well i have made 135 gears and you can upgrade it in market from De La Vega for 250k CPS for each item also you should get 1 blessing amulet to make dmg -1 and you can get it by killing 1000 Birdman or 1000 Snake man or...
Perfect profession Perfect skill new mysterious profesion Paladin come out
01/25/2008 - EO PServer Hosting - 9 Replies
now i still editing server file and cilent files ! after all the work is ok ! i will release it out! show some pic first! so cool the skill !!!!!:D:D:D:D:D:D:p:p:p:p:p Now all the file is OK ! you can down it and test it !!!:D:D:D:D:D i had modify the new talent,all the talent words and file i is ok now ,you can test it also D:D:D:D:D http://ee.a.5d6d.com/userdirs/e/c/ggmy/attachment s/month_0801/20080121_fe9c5df5a332248b2850ctH3Pgte jSwO.jpg ...



All times are GMT +1. The time now is 16:11.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

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