conquer online night.

12/12/2012 03:16 LordGragen.#1
hello everyone does anyone here know any source dont matter what version have night system or any thing about night. i like to add night in my project i was wondering if there is any to get some help from there thx
12/12/2012 06:11 JohnHeatz#2
#Moved to the right section
12/12/2012 07:38 Spirited#3
Sky Color subtype (104) in the General Action (10010) packet.
The programmer you're paying to code your server should know how to implement it.
12/12/2012 07:56 LordGragen.#4
Quote:
Originally Posted by Fаng View Post
Sky Color subtype (104) in the General Action (10010) packet.
The programmer you're paying to code your server should know how to implement it.
lol ok ty

also please stop saying the "programmer who is coding your server"

coz he only help me with voice talking and gui. the rest o coding is on me

if he code something other then that in the future he will get the credit
12/12/2012 08:00 btot#5
this code will help you alot it fully works realsed b4 in kimo source

Data datas = new Data(true);
datas.UID = C.Entity.UID;
datas.ID = 104;
Program.ScreenColor = 5855577;
datas.dwParam = 5855577;
C.Send(datas);
12/12/2012 08:01 LordGragen.#6
Quote:
Originally Posted by btot View Post
this code will help you alot it fully works realsed b4 in kimo source

Data datas = new Data(true);
datas.UID = C.Entity.UID;
datas.ID = 104;
Program.ScreenColor = 5855577;
datas.dwParam = 5855577;
C.Send(datas);
thank you. yah i know it was relese on many sources before just dont have the time to download all i didnt even know the packet.
12/12/2012 13:21 _DreadNought_#7
Quote:
Originally Posted by btot View Post
this code will help you alot it fully works realsed b4 in kimo source

Data datas = new Data(true);
datas.UID = C.Entity.UID;
datas.ID = 104;
Program.ScreenColor = 5855577;
datas.dwParam = 5855577;
C.Send(datas);

PHP Code:
Program.ScreenColor 5855577;

C.Send(new Data(true)
                                         {
                                                
UID C.Entity.UID,
                                                
ID Data.SkyColor,
                                                
DwParam Program.ScreenColor
                                         
}; 
Isn't that alot neater? So I sent the data to the client in one line(Effectively, yes I did) I changed the layout for personal preference(neater imo) and set the DwParam to the Program.ScreenColor & introduced a enum value for the ID
12/12/2012 14:00 LordGragen.#8
Quote:
Originally Posted by _DreadNought_ View Post
PHP Code:
Program.ScreenColor 5855577;

C.Send(new Data(true)
                                         {
                                                
UID C.Entity.UID,
                                                
ID Data.SkyColor,
                                                
DwParam Program.ScreenColor
                                         
}; 
Isn't that alot neater? So I sent the data to the client in one line(Effectively, yes I did) I changed the layout for personal preference(neater imo) and set the DwParam to the Program.ScreenColor & introduced a enum value for the ID
well thank you very much for the support it do relly look simple code
12/12/2012 16:37 .Ocularis#9
Someone's been playing Trinity :rolleyes:

Quote:
Originally Posted by btot View Post
this code will help you alot it fully works realsed b4 in kimo source

Data datas = new Data(true);
datas.UID = C.Entity.UID;
datas.ID = 104;
Program.ScreenColor = 5855577;
datas.dwParam = 5855577;
C.Send(datas);
What are you doing with all those numbers?
12/12/2012 17:06 _DreadNought_#10
Quote:
Originally Posted by .Ocularis View Post
Someone's been playing Trinity :rolleyes:


What are you doing with all those numbers?
Nighttime existed before the idea of trinity was even thought of. :rolleyes:

The numbers are the colours representing the screencolor.
12/12/2012 18:49 Super Aids#11
Quote:
Originally Posted by _DreadNought_ View Post
PHP Code:
Program.ScreenColor 5855577;

C.Send(new Data(true)
                                         {
                                                
UID C.Entity.UID,
                                                
ID Data.SkyColor,
                                                
DwParam Program.ScreenColor
                                         
}; 
Isn't that alot neater? So I sent the data to the client in one line(Effectively, yes I did) I changed the layout for personal preference(neater imo) and set the DwParam to the Program.ScreenColor & introduced a enum value for the ID
Except for storing variables in Program... that's messy.
12/12/2012 19:31 _DreadNought_#12
Quote:
Originally Posted by Super Aids View Post
Except for storing variables in Program... that's messy.
Gotta work with what he's done. I never said it was good, or anywhere near lol
12/13/2012 01:27 .Ocularis#13
Quote:
Originally Posted by _DreadNought_ View Post
Nighttime existed before the idea of trinity was even thought of. :rolleyes:

The numbers are the colours representing the screencolor.
That code doesn't really unlock the potential of screen tinting.
Sure night and day existed before Trinity was a thought, but no one did it correctly.
He's from Trinity, there's a nice night/day system implemented with sunset/sunrise with night and daytime monsters as well as sound effects for each there.
12/13/2012 01:52 Spirited#14
Quote:
Originally Posted by .Ocularis View Post
That code doesn't really unlock the potential of screen tinting.
Sure night and day existed before Trinity was a thought, but no one did it correctly.
He's from Trinity, there's a nice night/day system implemented with sunset/sunrise with night and daytime monsters as well as sound effects for each there.
I'm still holding my breath that an idiot doesn't blurt it out. If people want that, then they can use very basic logic to figure it out. That doesn't seem to be the concern though since most people are completely content with just using that tint.
12/13/2012 02:23 _DreadNought_#15
Quote:
Originally Posted by .Ocularis View Post
That code doesn't really unlock the potential of screen tinting.
Sure night and day existed before Trinity was a thought, but no one did it correctly.
He's from Trinity, there's a nice night/day system implemented with sunset/sunrise with night and daytime monsters as well as sound effects for each there.
Wasn't aware there was a proper way, ok.

ima see if I can log it from tq :D